How to start my package.json
My index.js in "client/js/index.js"
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "????"
}
How to start my package.json
My index.js in "client/js/index.js"
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "????"
}
In order to start the index.js
file:
"start": "node client/js/index.js"
To run:
npm start
As this is a node project your start should look like this:
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node client/js/index.js"
}
you can then run
npm start