Cross platform setting of environment scripts (evacuated from NSA/Microsoft Github)

Armin Sebastian 553705c302 docs(README): list @naholyr/cross-env in Other Solutions section (#189) 5 years ago
.github 42424909c3 docs: ISSUE_TEMPLATE fix 6 years ago
__mocks__ dad00c469a feat(revamp): revamp the entire lib (backward compatible) (#63) 7 years ago
other dad00c469a feat(revamp): revamp the entire lib (backward compatible) (#63) 7 years ago
src b88977c17d fix: check for sigint before setting exit code to 1 (#181) 6 years ago
.all-contributorsrc b88977c17d fix: check for sigint before setting exit code to 1 (#181) 6 years ago
.gitattributes 25f7b5ff37 chore(git): add .gitattributes file 7 years ago
.gitignore 0fe3482442 chore: rm yarn.lock, add lock files to .gitignore (#131) 6 years ago
.npmrc dd7b1fec62 chore(build): switch to kcd-scripts (#142) 6 years ago
.travis.yml dd7b1fec62 chore(build): switch to kcd-scripts (#142) 6 years ago
CHANGELOG.md dba0b39302 docs: update path to release page (#71) 7 years ago
CONTRIBUTING.md dd7b1fec62 chore(build): switch to kcd-scripts (#142) 6 years ago
LICENSE dd7b1fec62 chore(build): switch to kcd-scripts (#142) 6 years ago
README.md 553705c302 docs(README): list @naholyr/cross-env in Other Solutions section (#189) 5 years ago
appveyor.yml dd7b1fec62 chore(build): switch to kcd-scripts (#142) 6 years ago
jest.config.js 50299d98b3 fix: remove env variables that don't exist from the converted commands in Windows. (#149) 6 years ago
package.json 739fd622e8 feat(deps): upgrade cross-spawn (#182) 5 years ago

README.md

cross-env 🔀

Run scripts that set and use environment variables across platforms

Travis Build Status AppVeyor Build Status Code Coverage Dependencies version node-version downloads

MIT License All Contributors PRs Welcome Donate Code of Conduct Roadmap Examples

Watch on GitHub Star on GitHub Tweet

The problem

Most Windows command prompts will choke when you set environment variables with NODE_ENV=production like that. (The exception is Bash on Windows, which uses native Bash.) Similarly, there's a difference in how windows and POSIX commands utilize environment variables. With POSIX, you use: $ENV_VAR and on windows you use %ENV_VAR%.

This solution

cross-env makes it so you can have a single command without worrying about setting or using the environment variable properly for the platform. Just set it like you would if it's running on a POSIX system, and cross-env will take care of setting it properly.

Installation

This module is distributed via npm which is bundled with node and should be installed as one of your project's devDependencies:

npm install --save-dev cross-env

WARNING! Make sure that when you're installing packages that you spell things correctly to avoid mistakenly installing malware

Usage

I use this in my npm scripts:

{
  "scripts": {
    "build": "cross-env NODE_ENV=production webpack --config build/webpack.config.js"
  }
}

Ultimately, the command that is executed (using cross-spawn) is:

webpack --config build/webpack.config.js

The NODE_ENV environment variable will be set by cross-env

You can also split a command into several ones, or separate the environment variables declaration from the actual command execution. You can do it this way:

{
  "scripts": {
    "parentScript": "cross-env GREET=\"Joe\" npm run childScript",
    "childScript": "cross-env-shell \"echo Hello $GREET\""
  }
}

Where childScript holds the actual command to execute and parentScript sets the environment variables to use. Then instead of run the childScript you run the parent. This is quite useful for launching the same command with different env variables or when the environment variables are too long to have everything in one line. It also means that you can use $GREET env var syntax even on Windows which would usually require it to be %GREET%.

If you preceed a dollar sign with an odd number of backslashes the expression statement will not be replaced. Note that this means backslashes after the JSON string escaping took place. "FOO=\\$BAR" will not be replaced. "FOO=\\\\$BAR" will be replaced though.

Lastly, if you want to pass a JSON string (e.g., when using ts-loader), you can do as follows:

{
  "scripts": {
    "test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} node some_file.test.ts"
  }
}

Pay special attention to the triple backslash (\\\) before the double quotes (") and the absence of single quotes ('). Both of these conditions have to be met in order to work both on Windows and UNIX.

cross-env vs cross-env-shell

The cross-env module exposes two bins: cross-env and cross-env-shell. The first one executes commands using cross-spawn, while the second one uses the shell option from Node's spawn.

The main use case for cross-env-shell is when you need an environment variable to be set across an entire inline shell script, rather than just one command.

For example, if you want to have the environment variable apply to several commands in series then you will need to wrap those in quotes and use cross-env-shell instead of cross-env.

{
  "scripts": {
    "greet": "cross-env-shell GREETING=Hi NAME=Joe \"echo $GREETING && echo $NAME\""
  }
}

The rule of thumb is: if you want to pass to cross-env a command that contains special shell characters that you want interpreted, then use cross-env-shell. Otherwise stick to cross-env.

On Windows you need to use cross-env-shell, if you want to handle signal events inside of your program. A common case for that is when you want to capture a SIGINT event invoked by pressing Ctrl + C on the command-line interface.

Inspiration

I originally created this to solve a problem I was having with my npm scripts in angular-formly. This made contributing to the project much easier for Windows users.

Other Solutions

  • env-cmd - Reads environment variables from a file instead
  • @naholyr/cross-env - cross-env with support for setting default values

Contributors

Thanks goes to these people (emoji key):


Kent C. Dodds

💻 📖 🚇") ⚠️

Ya Zhuang

🔌 📖

James Harris

📖

compumike08

🐛 📖 ⚠️

Daniel Rodríguez Rivero

🐛 💻 📖

Jonas Keinholz

🐛 💻 ⚠️

Hugo Wood

🐛 💻 ⚠️

Thiebaud Thomas

🐛 💻 ⚠️

Daniel Rey López

💻 ⚠️

Amila Welihinda

🚇")

Paul Betts

🐛 💻

Turner Hayes

🐛 💻 ⚠️

Suhas Karanth

💻 ⚠️

Sven

💻 📖 💡 ⚠️

D. Nicolás Lopez Zelaya

💻

Johan Hernandez

💻

Jordan Nielson

🐛 💻 ⚠️

This project follows the all-contributors specification. Contributions of any kind welcome!

Note: this was added late into the project. If you've contributed to this project in any way, please make a pull request to add yourself to the list by following the instructions in the CONTRIBUTING.md

LICENSE

MIT