How to fix the npm ERR! Missing script: dev
Learn, how to fix the npm ERR! Missing script: “dev” error in your JavaScript projects.
This error occurs due to the following reasons:
- Using the
npm run devcommand without defining it inside thescriptsobject in your
package.json file.
-
Running the “npm run dev” command in a different directory.
-
Not initialized a
package.jsonfile in your project directory.
Run npm dev
npm ERR! Missing script: "dev"
npm ERR!
npm ERR! To see a list of scripts, run:
npm ERR! npm run
npm ERR! A complete log of this run can be found in:To fix the npm ERR! Missing script:“dev” error, add the dev script to your package.json file and open the root project directory in your terminal before running the npm run dev command.
Here is an example:
"scripts": {
"dev": "node app.js"
},Here, I added a dev file app.js, in your case it will be some other file.
If you don’t have package.json file in your project directory, you can initialize it by running the
npm init -y command.
npm init -yNow, add the dev script to the package.json file.


