1.0.0 • Published 9 years ago
interactive-env v1.0.0
interactive-env
Simple Node.js command line tool for initialising your environment variables
Installation
You can install interactive-env globally so you can use it across all of your projects, or as a dependency in package.json so that everyone who works on the project can use it.
Global Install
npm install --global interactive-envLocal Install
npm install --save-dev interactive-envUsage
Global Install
If you have interactive-env installed globally, you can run it directly from the command line.
$ interactive-envLocal Install
If you have interactive-env installed as a dependency in a project, you can run it from the node_modules/.bin folder.
$ ./node_modules/.bin/interactive-envHowever, I recommend that you add it as an npm script in your package.json to make it easier for you and anyone else working on your project.
{
...
"scripts": {
"env": "interactive-env"
...
},
...
}$ npm run env1.0.0
9 years ago
