npm scripts构建

Posted 三剑客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了npm scripts构建相关的知识,希望对你有一定的参考价值。

管道(|)运算符会将一个命令的输出以流的方式作为另一个命令的输入。

重定向(>)运算符则会将输出重定向到文件。

< 将文件内容输入到一个命令

在Unix中,还可以通过“&”运算符同时运行两个命令。npm run script1.js & npm run script2.js

 

npm-run-all   A CLI tool to run multiple npm-scripts in parallel or sequential.

run-s is for sequential, run-p is for parallel. We can make simple plans with those commands.

cross-env Run commands that set environment variables across platforms(https://www.npmjs.com/package/cross-env)

 

ShellJS是个通过Node来运行Unix命令的npm包。这样就可以通过它在所有平台上运行Unix命令了,也包括Windows。(https://www.npmjs.com/package/shelljs)

 

 

 

 

参考文章http://www.infoq.com/cn/news/2016/02/gulp-grunt-npm-scripts-part2

相关知识 http://www.tutorialspoint.com/unix/unix-useful-commands.htm

https://www.pluralsight.com/courses/npm-build-tool-introduction

以上是关于npm scripts构建的主要内容,如果未能解决你的问题,请参考以下文章

json 并发脚本npm-run-all,静默模式npm start -s

json babel,sass,npm-run-all

[Tool] Open Multiple Terminal Tabs on npm Start with ttab and npm-run-all

npm 错误!代码 ENOENT,npm 错误!错误号 34

在 kubernetes 环境中运行时 nodemon 未启动

从Npm Script到Webpack,6种常见的前端构建工具对比