ここで node.js を初めて使用します。
私はそれをインストールし、w3 モジュール (Windows 上) を使用しようとしています。
グローバル リポジトリの場所を次のように変更C:\Users\<user>\.node_modules_global
し、次のコマンドで web3 モジュールをインストールしました。これにより、node_modules_global フォルダーに新しいフォルダーが作成されました。
npm install ethereum/web3.js --global
走ろうとすると
Web3 = require('web3')
それ、私は
Error: Cannot find module 'web3'
ただし、フルパスを使用する場合:
Web3 = require('C:\\Users\\<user>\\.node_modules_global\\node_modules\\web3')
できます。この問題の原因は何ですか?C:\\Users\\<user>\\.node_modules_global
(システムパスに追加しました)
ありがとう