无法遍历依赖图:找不到模块'./crypto_auth'钠通用

Can't walk dependency graph: Cannot find module './crypto_auth' sodium-universal

我在尝试浏览节点项目 (https://github.com/datproject/sdk) 时收到以下错误,并且收到以下错误。

Error: Can't walk dependency graph: Cannot find module './crypto_auth' from 'C:\myPath\node_modules\sodium-universal\index.js'
    required by C:\myPath\node_modules\sodium-universal\index.js
    at C:\myPath\node_modules\resolve\lib\async.js:137:35
    at load (C:\myPath\node_modules\resolve\lib\async.js:156:43)
    at onex (C:\myPath\node_modules\resolve\lib\async.js:181:17)
    at C:\myPath\node_modules\resolve\lib\async.js:15:69
    at FSReqCallback.oncomplete (fs.js:158:21)
npm ERR! code ELIFECYCLE

通常我会 npm install 缺少的模块。但是,这在这种情况下不起作用。此外,我在项目中的任何地方都找不到 crypt_auth 的提及(引用的 index.js 有一行 module.exports = require('sodium-native')

我该如何调试它?

经过Paul90的评论here,我是这样解决的:

  1. cd 进入 yourPath/node_modules/sodium-universal/build-scripts 目录
  2. 运行 node generate.js
  3. 返回 sdk 目录并 运行 npm run build