Cross platform NPM start script

一曲冷凌霜 提交于 2019-12-30 06:15:45

问题


I'm building out an Electron app that will be developed by folks on both Windows and OS X. I'd like to create a cross-platform start script. So far, I've had exactly zero luck getting something that works. The issue, I think, is that I need to set the NODE_ENV environment variable and the syntax is slightly different.

I'm hoping there's a way that I just haven't found yet. My current scripts section follows:

"scripts": {
    "start:osx": "NODE_ENV=development electron ./app/",
    "start:win": "set NODE_ENV=development && electron ./app/"
}

I'd really like to create a single "start" script and eliminate the platform-specific variants. Is it possible?


回答1:


Environment variables are a problem in Windows.

As stated Domenic Denicola (one of the main contributors to npm) :

This is not npm's job. You can run custom Node scripts to set environment variables using process.env if you'd like, or use something that isn't environment variables (like JSON).

...

You can write custom scripts to work around connect's limitations, e.g. in your tests modify process.env.

(Reference : this issue)

So we'll manage through a JS script (Solution inspired on this commit) :

  1. Create a exec.js file in a scripts directory

  2. Copy the following code in exec.js :

var exec = require('child_process').exec;

var command_line = 'electron ./app/';
var environ = (!process.argv[2].indexOf('development')) ? 'development' : 'production';

if(process.platform === 'win32') {
  // tricks : https://github.com/remy/nodemon/issues/184#issuecomment-87378478 (Just don't add the space after the NODE_ENV variable, just straight to &&:)      
  command_line = 'set NODE_ENV=' + environ + '&& ' + command_line;
} else {
  command_line = 'NODE_ENV=' + environ + ' ' + command_line;
}

var command = exec(command_line);

command.stdout.on('data', function(data) {
  process.stdout.write(data);
});
command.stderr.on('data', function(data) {
  process.stderr.write(data);
});
command.on('error', function(err) {
  process.stderr.write(err);
});
  1. Update your package.json :
"scripts": {
    "start": "node scripts/exec.js development",
}
  1. Run npm script : npm run start

Edit 05.04.2016

There is a very useful npm package that allows manages this problem : cross-env. Run commands that set environment variables across platforms



来源:https://stackoverflow.com/questions/32971416/cross-platform-npm-start-script

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!