节点找不到 Web3 js

Node can't find Web3 js

我是 Node 的新手。所以,我这样安装了 Web3:

npm install -g web3

成功。然后我 运行 节点并尝试要求 web3。它不起作用:

Welcome to Node.js v12.11.0.
Type ".help" for more information.
> Web3 = require('web3')
Thrown:
Error: Cannot find module 'web3'
Require stack:
- <repl>
    at Function.Module._resolveFilename (internal/modules/cjs/loader.js:780:15)
    at Function.Module._load (internal/modules/cjs/loader.js:685:27)
    at Module.require (internal/modules/cjs/loader.js:838:19)
    at require (internal/modules/cjs/helpers.js:74:18) {
  code: 'MODULE_NOT_FOUND',
  requireStack: [ '<repl>' ]
}

任何想法,我可能遗漏了一些明显的东西。

当您使用 -g 全局安装时,web3 似乎有问题。

我建议你给你的项目 npm init 如果你还没有给它并且只为你的项目安装它 运行:

npm install web3

在您的项目文件夹中。