web-dev-qa-db-ja.com

node.js npm install fsエラー

ubuntu@ip-xxx-xx-x-xxx:/var/www/html$ npm install fs
npm WARN package.json [email protected] crypto is also the name of a node core module.
npm WARN package.json [email protected] No description
npm WARN package.json [email protected] http is also the name of a node core module.
npm WARN package.json [email protected] No description
npm WARN package.json [email protected] No repository field.
npm WARN package.json [email protected] No repository field.

npm WARN package.json [email protected] querystring is also the name of a node core module.
    npm WARN package.json [email protected] url is also the name of a node core module.
    npm WARN package.json [email protected] util is also the name of a node core module.
    npm ERR! 404 Not Found
    npm ERR! 404 
    npm ERR! 404 'fs' is not in the npm registry.
    npm ERR! 404 You should bug the author to publish it
    npm ERR! 404 
    npm ERR! 404 Note that you can also install from a
    npm ERR! 404 tarball, folder, or http url, or git url.

npm ERR!システムLinux 3.13.0-24-generic npm ERR!コマンド "/ usr/local/bin/node" "/ usr/local/bin/npm" "install" "fs" npm ERR! cwd/var/www/html npm ERR! node -v v0.10.29 npm ERR! npm -v 1.4.14 npm ERR!コードE404 npm ERR!エラー:EACCES、「npm-debug.log」を開くnpm ERR! {[エラー:EACCES、 'npm-debug.log'を開く] errno:3、コード: 'EACCES'、パス: 'npm-debug.log'}

npm ERR!このコマンドをroot/Administratorとして再度実行してください。

npm ERR! System Linux 3.13.0-24-generic
npm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install" "fs"
npm ERR! cwd /var/www/html
npm ERR! node -v v0.10.29
npm ERR! npm -v 1.4.14
npm ERR! path npm-debug.log
npm ERR! code EACCES
npm ERR! errno 3
npm ERR! stack Error: EACCES, open 'npm-debug.log'
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /var/www/html/npm-debug.log
npm ERR! not ok code 0

「npm install fs」と入力しましたが、このエラーが表示されます。

13
user3052269

Fsモジュールはノードのコアモジュールの一部であるため、エラーが発生しています。インストールする必要はありません。 http://nodejs.org/api/fs.html

48
Ben

nodejs内部モジュールをインストールする必要はありませんが、更新できます。 fsは内部ノードのjsモジュールです!

0