• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

找不到模块:错误:没办法'/opt/lampp/htdocs/angular-testing-app/node_modules/jwa'的'crypto'

用户头像
it1352
帮助1

问题说明

我将在我的angular6项目npm i jsonwebtoken中安装jsonwebtoken模块.安装了jsonwebtoken模块Dependencies jwa,但是index.js文件crypto需要错误无法解析'crypto',但是我已经安装了crypto模块.

请帮助并解决问题.

我的错误:

I will install jsonwebtoken module in my angular6 project npm i jsonwebtoken. The jsonwebtoken module Dependencies jwa installed, But that index.js file crypto require error Can't resolve 'crypto', But i already install crypto module.

Please help and clear the issue.

My error:

ERROR in ./node_modules/jwa/index.js
Module not found: Error: Can't resolve 'crypto' in '/opt/lampp/htdocs/angular-testing-app/node_modules/jwa'
ERROR in ./node_modules/jws/lib/sign-stream.js
Module not found: Error: Can't resolve 'stream' in '/opt/lampp/htdocs/angular-testing-app/node_modules/jws/lib'
ERROR in ./node_modules/jws/lib/verify-stream.js
Module not found: Error: Can't resolve 'stream' in '/opt/lampp/htdocs/angular-testing-app/node_modules/jws/lib'
ERROR in ./node_modules/jws/lib/data-stream.js
Module not found: Error: Can't resolve 'stream' in '/opt/lampp/htdocs/angular-testing-app/node_modules/jws/lib'

正确答案

#1

我遇到了与您相同的问题,并且解决了. 您可以按照以下步骤操作:

I faced the issue same as you and I resolved. You can follow these steps:

  1. 将此文件添加到根目录

patch.js

const fs = require('fs');
const f = 'node_modules/@angular-devkit/build-angular/src/angular-cli-files/models/webpack-configs/browser.js';

fs.readFile(f, 'utf8', function (err,data) {
  if (err) {
    return console.log(err);
  }
  var result = data.replace(/node: false/g, 'node: {crypto: true, stream: true}');

  fs.writeFile(f, result, 'utf8', function (err) {
    if (err) return console.log(err);
  });
});
  1. 将此命令添加到 package.json 文件

package.json

{...
  "scripts": {
    "postinstall": "node patch.js",
    ...
  }
}

参考: https://gist.github.com/niespodd/1fa82da6f8c901d1c33d2fcbb762947d

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfgcgk
系列文章
更多 icon
同类精品
更多 icon
继续加载