The scripts portion of my package.json currently looks like this: Code: "scripts": { "start": "node ./script.js server" } which means I can run npm start to start the server. So far so good.
Sending command line arguments to npm script
2
The scripts portion of my package.json currently looks like this:
which means I can run npm start to start the server. So far so good.
However, I would like to be able to run something like npm start 8080 and have the argument(s) passed to script.js (e.g. npm start 8080 => nodes ./script.js server 8080). Is this conceivable?
Code:
"scripts": { "start": "node ./script.js server" }
However, I would like to be able to run something like npm start 8080 and have the argument(s) passed to script.js (e.g. npm start 8080 => nodes ./script.js server 8080). Is this conceivable?
- Anjela1Smith
- valina g
- Justcare
Next Topics on Trending Feed
-
2