I was trying to run this SVELT GitHub repo on local server:
I tried to launch it with "npm run dev" mand. But I am seeing this error:
npm ERR! missing script: dev
I have tried to fix the issue by setting 'ignore-scripts' to false with this mand:
npm config set ignore-scripts false
But it doesn't work.
How can I fix the issue?
I was trying to run this SVELT GitHub repo on local server:
https://github./fusioncharts/svelte-fusioncharts
I tried to launch it with "npm run dev" mand. But I am seeing this error:
npm ERR! missing script: dev
I have tried to fix the issue by setting 'ignore-scripts' to false with this mand:
npm config set ignore-scripts false
But it doesn't work.
How can I fix the issue?
Share Improve this question asked Apr 20, 2021 at 9:16 Md. Ehsanul Haque KananMd. Ehsanul Haque Kanan 1651 gold badge1 silver badge10 bronze badges 7-
Did you run
npm i
after you cloned it, like they state in the docs? – ASDFGerte Commented Apr 20, 2021 at 9:19 -
2
The
package.json
does not have a script nameddev
– CD.. Commented Apr 20, 2021 at 9:21 - If you look on repo package.json under scripts, you can see that script name is "prepublishOnly" and its property are npm run dev, you can do npm prepublishOnly – Sudarshan Rai Commented Apr 20, 2021 at 9:21
-
1
There is no
dev
script in thepackage.json
. At this point you should open an issue to ping maintainers to clarify the README. – johannchopin Commented Apr 20, 2021 at 9:23 - @ASDFGerte yes. – Md. Ehsanul Haque Kanan Commented Apr 20, 2021 at 9:23
5 Answers
Reset to default 5npm ERR! missing script: dev
means there isn't a script having dev
. You are likely running on an incorrect directory.
Fusion charts seem to work with svelte codesandbox.
npm ERR! missing script: dev
means it cannot find a script called dev
inside package.json
.
That makes sense!
It looks at the package.json
inside the svelte-fusioncharts repo. In that file, there is a scripts
property.
Notice how that property looks as follows:
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
}
It does not contain a dev
script. That’s why it says there’s a missing script. Other mands will work, like npm run build
or npm run prepublishOnly
.
Md. Ehsanul Haque Kanan,
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"dev": "webpack-dev-server --content-base public" }
The above is the script from the examples folder in the repo: https://github./fusioncharts/svelte-fusioncharts/blob/develop/examples/package.json
You have missed out on the "dev" script in your package.json file.
Please check the "package.json" file in your project and just add the "dev" script as in the repo link and then retry.
Alright. I have fixed the issue. I just go inside examples folder. Then I run the following mands:
npm install
npm run dev
I had the same problem.
It is due to changes in script object in package.json by me. I had installed nodemon and to run the code, I changed the script lifecycle events start
and dev
in package.json to run the code via nodemon.
But even after installing nodemon, it was not reflecting in devDependencies
, so I made manual entry in package.json
with its version seeing from package-lock.json
.
"devDependencies": {
"nodemon":"^2.0.15"
}
Making this arrangement, my code started as expected.
So, check your recent npm package installation and verify its reflection in devDependencies
or dependencies
in package.json.