Retrieve arguments of Node command line argument , smoothly.
npm install ps-grabif you want to run this kind of command line :
``bash`
node myScript.js --name Ahmed --action greeting--name
Then , reading values of arguments(i.e : , --action ) is wanted .
If so ,this package is useful :
`js``
var grab=require('ps-grab');
grab('--name') // return 'Ahmed'
grab('--action') // return 'greeting'