fex-team / fis3-hook-node_modules

fis3 node_modules 支持
81 stars 12 forks source link

‘process/browser’ not install #35

Closed lococo--0 closed 8 years ago

lococo--0 commented 8 years ago

在引入 reflect-metadata 的时候,当我设置isMod: true总会提示我一个 process/browser 找不到的warning

  [WARNI] Can't resolve `process/browser` in file [/node_modules/reflect-metadata/Reflect.js], did you miss `npm install process`?

但是我去查这个文件里面只有一个require('crypto') 当我把isMod设为false的时候,就没有这个warning了

2betop commented 8 years ago

因为 zone.js 里面有 global 的用法,而 浏览器中并不能运行。所以,自动会在代码顶部加上

var global = require('process/browser');

So, 你就执行下 npm install process 然后就OK了。

lococo--0 commented 8 years ago

太棒!好喜欢秒回的issue!