npm

提供: Node.js/JavaScript入門
移動: 案内検索
スポンサーリンク

npm(Node Packaged Modules)とは、node.jsのパッケージ管理コマンドです。

読み方

npm
えぬぴーえむ
Node Packaged Modules
のーど ぱっけーじど もじゅーるず

概要

npmは、node.jsのパッケージ管理コマンドです。

FreeBSD環境でのインストール

$ sudo pkg install node npm

Ubuntu

$ sudo apt-get install nodejs npm

CentOS

# 32bit
$ sudo rpm \
-ivh http://ftp.riken.jp/Linux/fedora/epel/6/i386/epel-release-6-8.noarch.rpm
# 64bit
$ sudo rpm \
-ivh http://ftp.riken.jp/Linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
$ yum install nodejs npm --enablerepo=epel

使い方

コマンドラインオプション

Usage: npm <command>
 
where <command> is one of:
    add-user, adduser, apihelp, author, bin, bugs, c, cache,
    completion, config, ddp, dedupe, deprecate, docs, edit,
    explore, faq, find, find-dupes, get, help, help-search,
    home, i, info, init, install, isntall, issues, la, link,
    list, ll, ln, login, ls, outdated, owner, pack, prefix,
    prune, publish, r, rb, rebuild, remove, repo, restart, rm,
    root, run-script, s, se, search, set, show, shrinkwrap,
    star, stars, start, stop, submodule, t, tag, test, tst, un,
    uninstall, unlink, unpublish, unstar, up, update, v,
    version, view, whoami
 
npm <cmd> -h     quick help on <cmd>
npm -l           display full usage info
npm faq          commonly asked questions
npm help <term>  search for help on <term>
npm help npm     involved overview
 
Specify configs in the ini-formatted file:
    /home/kaworu/.npmrc
or on the command line via: npm <command> --key value
Config info can be viewed via: npm help config
 
npm@1.4.6 /usr/local/lib/node_modules/npm

モジュールのリスト

インストールしたモジュールは、listオプションで表示できます。 空っぽの場合は、以下の通りです。

$ npm list
/tmp
└── (empty)
$ npm list
/tmp
└─┬ forever@0.10.11
  ├─┬ cliff@0.1.8
  │ ├── eyes@0.1.8
  │ └─┬ winston@0.6.2
  │   ├── async@0.1.22
  │   ├── cycle@1.0.3
  │   ├── pkginfo@0.2.3
  │   ├── request@2.9.203
  │   └── stack-trace@0.0.9
  ├── colors@0.6.2
省略

モジュールのインストール

$ npm install モジュール名

npmは、デフォルトでは、パッケージをカレントディレクトリのインストールします。グローバル(/usr/localのような)にインストールする場合には、 -g オプションを使用します。

$ npm install -g jshint


$ npm install forever
npm http GET https://registry.npmjs.org/forever
npm http 200 https://registry.npmjs.org/forever
npm http GET https://registry.npmjs.org/forever/-/forever-0.10.11.tgz
npm http 200 https://registry.npmjs.org/forever/-/forever-0.10.11.tgz
 
... 省略
 
forever@0.10.11 node_modules/forever
├── watch@0.8.0
├── colors@0.6.2
├── pkginfo@0.3.0
├── timespan@2.3.0
├── utile@0.2.1 (deep-equal@0.2.1, rimraf@2.2.6, ...省略)
├── nssocket@0.5.1 (eventemitter2@0.4.13, lazy@1.0.11)
├── optimist@0.6.1 (wordwrap@0.0.2, minimist@0.0.8)
├── nconf@0.6.9 (ini@1.1.0, async@0.2.9, optimist@0.6.0)
├── cliff@0.1.8 (eyes@0.1.8, winston@0.6.2)
├── winston@0.7.3 (cycle@1.0.3, stack-trace@0.0.9, ...省略)
├── forever-monitor@1.2.3 (watch@0.5.1, minimatch@0.2.14, ...省略)
└── flatiron@0.3.11 (director@1.1.10, optimist@0.6.0, ...省略)

モジュールのアンインストール

$ npm uninstall モジュール名

モジュールのアップデート

$ npm update

モジュールの情報を表示する

$ npm info forever
 
{ name: 'forever',
  description: 'A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)',
  'dist-tags': { latest: '0.10.11' },
  versions:
   [ '0.6.0',
     '0.6.1',
     '0.6.2',
 
省略

関連項目




スポンサーリンク