0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

nvm, npm, Node.js 覚書

0
Last updated at Posted at 2020-01-09

概略

Node.jsについては言わずもがな。
nvmnpmについては、NodeのバージョンやNode用のパッケージのバージョンの管理を助けてくれるアプリケーションである。
各バージョンを固定したり入れ替えたりを行う。
フォルダごとに使用するバージョンを切り替えることも?出来るはず?出来るはず。←TODO:後で調べる。

インストール

はじめに、npmとNode.jsはnvmでインストールするので、まずはnvmをインストールしましょう!

nvmインストール
GitHub nvm
インストール方法
アンインストール方法

npmインストール

  • グローバルインストール
    • npm install --global <パッケージ名>
  • ローカルインストール
    • npm install <パッケージ名>
    • オプション:パッケージ.jsonへ記載
      • --save
      • --save-dev 開発版として
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?