Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

使用npm start时,如何同时启动浏览器

$
0
0

在使用npm的时候,我们如果想同时启动浏览器,可以使用命令或直接在package.js里做如下配置

// Windows
"start":"start http://localhost:8081 & node bin/www"

// Mac
"start":"open http://localhost:8081 && node bin/www"

// Linux
"start":"xdg-open http://localhost:8081 && node bin/www"

原文地址

2017020394093npm.jpg


Viewing all articles
Browse latest Browse all 14821

Trending Articles