码迷,mamicode.com
首页 > 其他好文 > 详细

cross-env 的作用

时间:2021-04-27 15:08:20      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:environ   setting   module   cross   slice   lint   int   art   proc   

该命令是在node_modulesbin目录下,类似的脚本有cross-envcross-env-shell,在cross-env脚本中的内容如下:

#!/usr/bin/env node
‘use strict‘;

var crossEnv = require(‘..‘);

crossEnv(process.argv.slice(2));

会把node_modules/bin的命令添加到环境变量中,比如:

    "start": "cross-env ESLINT=none PORT=3001  NO_PROXY=true roadhog dev",

cross-env的功能解决跨平台的环境变量的问题。。

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.

cross-env 的作用

标签:environ   setting   module   cross   slice   lint   int   art   proc   

原文地址:https://www.cnblogs.com/bing-yu12/p/14707782.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!