4
2

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 3 years have passed since last update.

【Node.js】LTSバージョンのコードネームの意味

Last updated at Posted at 2020-09-02

LTSバージョンのコードネーム

nvm aliasで確認すると
lts/<コードネーム> -> <バージョン>
とそれぞれNode.jsのLTS(長期サポート)バージョンにはコードネームが割り振られています。アルゴン、カーボン、、うすうす規則性は見えてきますが気になったので調べました。

nodecodename.jpg

  • v4.9.1 → argon(アルゴン:原子番号18、元素記号はAr。)
  • v6.17.1 → boron(ホウ素:原子番号5、元素記号はB。)
  • v8.17.0 → carbon(炭素:原子番号6、元素記号はC。)
  • v10.22.0 → dubnium(ドブニウム:原子番号105の元素、元素記号はDb。)
  • v12.18.3 → erbium(エルビウム:原子番号68、元素記号はEr。)

今のところアルファベット順になっているので近々リリースされるv14の候補は

  • fluorine(フッ素:原子番号9、元素記号はF。)
  • ferrum(鉄:原子番号26、元素記号はFe。)
  • flerovium(フレロビウム:原子番号114、元素記号はFl。)
  • fermium(フェルミウム:原子番号100、元素記号はFm。)
  • francium(フランシウム:原子番号87、元素記号はFr。)

あたりですかね。

このコードネームをコマンドで指定するとインストールやバージョンの切替えができる。

% nvm use lts/dubnium
Now using node v10.22.0 (npm v6.14.6)

『nvmを使ったnode.jsのバージョン管理』

4
2
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
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?