Home > other >  Does vanilla JS project mean the project that was done without using any library or framework?
Does vanilla JS project mean the project that was done without using any library or framework?

Time:07-28

I used three.js, gsap, and mobx(a global state management library). Can't I just call this a vanilla JS project?

CodePudding user response:

Vanilla JS is a way of saying that the Javascript code is written without any libraries or dependencies.

Since you used three.js, gsap, and mobx, your project is not vanilla JS.

CodePudding user response:

No, you cannot. You used three frameworks. "Vanilla JS" means no frameworks.

  • Related