Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does vanilla mean?

The vanilla adjective appears in many places: plain-vanilla java, vanilla javascript: what does it exactly mean?

From context, is seems to stand for something "plain".

When is a specific code considered vanilla and when is it not? Plain, like not wrapped in a framework?

like image 562
Question Everything Avatar asked Dec 30 '13 08:12

Question Everything


2 Answers

Computer software, and sometimes also other computing-related systems like computer hardware or algorithms, is called Vanilla when not customized from its original form, meaning that it is used without any customizations or updates applied to it.

http://en.wikipedia.org/wiki/Vanilla_software

like image 175
HelloWorld123456789 Avatar answered Sep 19 '22 11:09

HelloWorld123456789


Vanilla often refers to pure or plain. So in terms of programming languages, it means either without the use of 3rd party libraries or without the use of frameworks.

like image 40
StandByUkraine Avatar answered Sep 22 '22 11:09

StandByUkraine