I use replit but the console log keeps telling me that a script is missing everytime i try to run it since i use replit but in the replit file it says run = "npm start" and everytime i run that it says the script "start" is missing here you can see the pic where it gives the error
run = "npm start"
You should edit your package.json file and add the following:
{ "scripts": { "start": "node index.js" } }
(only add the scripts, don't remove the current content of the file)
2.1m questions
2.1m answers
60 comments
57.0k users