問題タブ [web3js]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
node.js - Nodejs - フルパスを使用しないとモジュールをインポートできない
ここで node.js を初めて使用します。
私はそれをインストールし、w3 モジュール (Windows 上) を使用しようとしています。
グローバル リポジトリの場所を次のように変更C:\Users\<user>\.node_modules_global
し、次のコマンドで web3 モジュールをインストールしました。これにより、node_modules_global フォルダーに新しいフォルダーが作成されました。
走ろうとすると
Web3 = require('web3')
それ、私は
Error: Cannot find module 'web3'
ただし、フルパスを使用する場合:
できます。この問題の原因は何ですか?C:\\Users\\<user>\\.node_modules_global
(システムパスに追加しました)
ありがとう