Written by Sümeyye Sever (notes I took while creating web development projects)


→ npm create vite@latest . (inside the project folder)

→ npm install

What is the purpose of npm install? In this case, npm is used as a package manager to handle dependencies. A dependency is a software that must be installed for your package to function correctly (or at all). You can easily define your dependencies inside a package. json file, which you will find included in all code packages on npm.