After command npm start “Missing script:start” error

To download and install all modules in the node_modules/ folder, you need to use install and not start. As start is not predefined by npm, you need to define a custom script for it, if you want to use the comment.

So install is the default command to download and install all modules, depending on you package.json:

$ npm install

Leave a Comment