我寫了很多分析自耕農發電機的結構的包裝: https://github.com/tobiasoberrauch/yeoman-analyzer加快節點模塊許多安裝
因此我必須安裝所有發電機。這個解決方案花了很長時間(12小時)。我不太肯定的是目前的解決辦法是做到這一點的最好辦法:
獲取發電機名稱列表:https://github.com/tobiasoberrauch/yeoman-analyzer/blob/master/lib/analyzer/data/generators.json
關於安裝發電機的名單發電機node_modules(VERY SLOW):https://github.com/tobiasoberrauch/yeoman-analyzer/blob/master/lib/analyzer/generators.js#L24
分析從每個發生器的index.js:https://github.com/tobiasoberrauch/yeoman-analyzer/blob/master/lib/analyzer/generators.js#L47
報告寫入JSON文件:https://github.com/tobiasoberrauch/yeoman-analyzer/blob/master/lib/analyzer/reporter/json.js#L21
有沒有一種方法,以加快這一進程? 2.花了很長時間。 我讀到緩存,本地註冊表(npmd),但我沒有找到一個適當的,可持續的解決方案。
我會任何暗示很高興:+1: 乾杯托比亞斯
使用'npm install'和'--production'選項。這將使它忽略通常不需要的'devDependencies'。 – jgillich