Sending command line arguments to npm script

by 1 replies
2
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.

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?
#programming #arguments #command #line #npm #script #sending
  • [DELETED]
  • The 'vumper' package takes in a command line argument (such as 'dv'). What I would like to be able to do is have a command that runs both of these in succession.
  • [DELETED]

Next Topics on Trending Feed