We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
On server folder, the "start" script is:
but you don't have nodemon on your dependencies
Install nodemon as dev dependency with -D flag and change scripts to this: "scripts": { "start": "node index.js", "dev": "nodemon index.js" },
"scripts": { "start": "node index.js", "dev": "nodemon index.js" },