9
6

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.

Node.jsのバージョンをプロジェクト毎に使い分ける

Last updated at Posted at 2018-10-17

TL;DR

nvmdirenv を使ってプロジェクト毎にNode.jsのバージョンを使い分ける。

どうやって?

使用するツール

  • nvm : Node.jsのバージョン管理ツール
  • direnv : 環境管理ツール

Macを使っている人は $ brew install direnv nvm で入れちゃいましょう。

各種設定

nvm

プロジェクトのルート直下に以下を記述

.nvmrc
8.12.0 // 使いたいバージョン

direnv

プロジェクトのルート直下に以下を記述

.envrc
export NODE_VERSIONS=~/.nvm/versions/node
export NODE_VERSION_PREFIX=v
set -e
use node

$NODE_VERSIONS$NODE_VERSION_PREFIX の宣言はここじゃなくてもいいです。)

これで以上です!

参考資料

https://github.com/direnv/direnv/wiki/Node
https://github.com/creationix/nvm#nvmrc
https://github.com/direnv/direnv/issues/207

9
6
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
9
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?