When I first installed NPM Install in a folder, it created multiple folders and files:
node_modules
public
src
.DS_Store
package.json
package-lock.json
webpack.config.js
After that, npm start functioned perfectly.
Now, as I embark on a new project for this lesson, I had to create a fresh folder and start from scratch. Following the same steps, this time only the following were installed:
package.json
package-lock.json
No other components were installed like before.
Subsequently, when attempting npm start, an error pops up: MISSING SCRIPT: START
Could someone clarify why not everything is being installed now compared to just 15 minutes ago?
Thanks in advance!