node.js - 【nodejs】安裝browser-sync 遇到錯誤提示
ringa_lee
ringa_lee 2017-05-16 13:32:32
0
1
731

【nodejs】安裝browser-sync 遇到這樣的錯誤提示

$ npm install --save-dev browser-sync
npm WARN deprecated node-uuid@1.4.8: Use uuid module instead
BrowsersyncExample@1.0.0 E:\wamp\www\BrowsersyncExample
`-- browser-sync@2.18.8

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules\chokidar\node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.1.1: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
npm WARN BrowsersyncExample@1.0.0 No description
npm WARN BrowsersyncExample@1.0.0 No repository field.
npm WARN The package browser-sync is included as both a dev and production dependency.

如果忽略這些錯誤提示,請執行:

$ browser-sync start --server --files "css/*.css"
bash: browser-sync: command not found

就會出現這樣的提示。 。

請問各位有什麼好的解決辦法嗎?

ringa_lee
ringa_lee

ringa_lee

全部回覆(1)
phpcn_u1582

./node_modules/.bin/browser-sync

node只有--global or -g才是全局安装的包,一般才会出现在PATH里,才可以直接运行命令,否则就在./node_modules/.bin/, 需要加上路径才可以运行,也可以在package.json里添加入口,这个入口的环境变量默认包含node_modules/.bin, 可以直接

"scripts": {
  "watch": "browser-sync start --server --files 'css/*.css'"
}

然後npm run watch

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板