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

node 命令中 & 和 && 的区别

时间:2017-09-13 17:16:39      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:line   script   col   总结   node   三次   amp   dex   ora   

node first.js & node second.js 

执行结果: 
第一次:

  first.js
  second.js

第二次:

  second.js
  first.js

第三次:

  first.js
  second.js

第N次:

  ……

总结: 使用 & 连接符, first.js 和 second.js 的执行顺序不确定

 

node first.js && node second.js    

执行结果: 
第一次:

  first.js
  second.js

第二次:

  first.js
  second.js

第三次:

  first.js
  second.js

第N次:

  ……

总结: 使用 & 连接符, first.js 和 second.js 的执行顺序与命令中指定的先后顺序相同

 

first.js

1 function first(){
2     console.log(‘first.js‘);
3 }
4 
5 module.exports = first();

 

second.js

1 function second(){
2     console.log(‘second.js‘);
3 }
4 
5 module.exports = second();

 

package.json

 1 {
 2     "name": "logicaloperators",
 3     "version": "1.0.0",
 4     "description": "",
 5     "main": "index.js",
 6     "scripts": {
 7         "and": "node first.js & node second.js",
 8         "andand": "node first.js && node second.js"
 9     },
10     "author": "",
11     "license": "ISC"
12 }

 

node 命令中 & 和 && 的区别

标签:line   script   col   总结   node   三次   amp   dex   ora   

原文地址:http://www.cnblogs.com/skating/p/7515572.html

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