x-var v2.0.1
x-var
cross-var and cross-env revamped! Same syntax under Linux and Windows. .env supported!
Capabilities
- Use the same syntax for all operating systems Use the same syntax for all operating systems
- Load
.envfiles, see env files - Set environment variables in the command line for all operating systems (both
x-varandx-env) - Postpone the variable replacement
Use the same syntax for all operating systems
The variable placeholders are replaced by the x-var package. The placeholders are in the form $VAR or %VAR%.
See the section Caveats of the Linux and Windows command line compatibility for more details.
Look at the examples below. If you're Linux addicted:
{
"scripts": {
"version": "x-var echo \\$npm_package_version"
}
}or, if you lean towards the Windows style:
{
"scripts": {
"version": "x-var echo %npm_package_version%"
}
}Both will render the version of the package.
Source of variables
There is a bunch of sources of variables:
- local host operating system variables
- CI/CI
- docker
- user variables
npm config- npm configurationpackage.json- package.json file- ...
All these variables are available in the npm scripts.
Execute npm run env to see the list of available variables.
env files
Some projects use .env files, i.e.
.env- default variables.env-stage- staging variables.env-prod- production variables
For such cases there is an x-env utility:
{
"scripts": {
"run:dev": "x-env echo \\$DEPLOY_HOST",
"run:prod": "x-env -e=.prod.env echo \\$DEPLOY_HOST"
}
}Note:
- The
x-envutility just loads the.envfile and executes the command. - The
-eoption is used to specify the custom.envfile. dotenvpackage is used under the hood. So, almost all capabilities of these packages are kept.
Warning - the .env is loaded directly into process.env which makes all variables to be visible to the target application or script. If the .env is used by the target application, consider to use x-var to avoid conflicts.
Generally speaking, the x-env utility should be used for the most of the cases. The x-var should be used to avoid using .env files.
Caveats of the Linux and Windows command line compatibility
The Linux command line uses $ to access the environment variables, while the Windows command line uses %.
However, this is not the only difference. The Linux command line replaces the variables before the command is executed, while the Windows command line replaces the variables during the command execution.
Consider a simple example:
TEST=PASSED echo $TESTThe expected output is PASSED. But the actual output is empty!
This is because the $TEST is replaced by the shell before the command is executed.
The very same if we run the command in the npm scripts:
{
"scripts": {
"example": "TEST=PASSED echo $TEST"
}
}The output is empty as well. To fix this you might need to escape the dollar $ sign:
{
"scripts": {
"example": "TEST=PASSED echo \\$TEST"
}
}However, this won't work being run under Windows! The solution - Use the same syntax for all operating systems
Linux only solution
Despite the fact that Linux command line replaces the variables before the command is executed, there are still some useful features. If the cross-platform compatibility is not required, the encapsulation of the variable in the single quotes will work: Late evaluation of the variable:
x-var TEST=PASSED echo \$TESTsame as
TEST=PASSED x-var echo \$TESTIn this case the variable is not replaced by the shell, but by the x-var package.
Similar packages
- cross-var - the original package
- cross-env - the most popular package
- dotenv - the package to load
.envfiles
Difference with the cross-env package
- The
cross-envpackage is barely maintained - The cross-env package is unable to load
.envfiles.x-varusesdotenvunder the hood. - This does not work in cross-env and it works in
x-var:cross-env TEST=value echo \$TEST - And this
cross-env TEST=value echo %TEST% - Cross-env relies on unmaintained
cross-spawnpackage. Thex-varusesshell.jspackage.
Difference with the cross-var package
- the
cross-varpackage in unmaintained and has dozens of vulnerabilities - replaced
@babelwithtypescriptand move it to devDependencies - fixed stderr and stdout
- fixed exit code
- added tests
- added
x-envutility to load.envfiles - fixed the partial replacement of the variables
- added capability to set environment variables in the command line
- dropped exit package
- fixed stderr, again - by replacing the
cross-spawnwith theshell.js - added escaping of the dollar
$sign under Windows
Drawbacks
The x-var package is not a silver bullet. It has some drawbacks:
- it uses naive but aggressive replacement of the variables
- some things might be tricky to implement using
x-var
Let me know if you have any issues or suggestions.