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 1 year has passed since last update.

npmの真実

Posted at

npmについて

Node.jsのパッケージ管理ソフトウェアのようなもの。

npmって何の略?

皆さんのなかには

「npm」って 「Node Package Manager」じゃないの?
と思っている方もいるかも知れません。

しかし、それは違います。

公式によると、npmの前身が「pm」というbashのユーティリティであり、更にそのpmは「pkgmakeinst」の略であるそうです。

略として見なすならば
「node pm」
もしくは
「new pm」

が正しいようです。

https://npm.im/npm
に乗ってました。

Google翻訳で日本語にした結果

image.png
英語
image.png

そうとは思いませんでした…。ついNode Package Managerだとばかり…。

申し訳ありませんでしたnpm様!

そうそう、忘れていましたが
「npm」の正しい表記は
小文字アルファベットで

npm

が正しいようです。

その他

必須知識

npm install undici
npm i undici

上記は全く同じインストールになります。

npm remove undici

これでパッケージの削除ができます。

npm publish

パッケージを公開します。

npm install npm@latest

npmを更新します。

まとめ

npm → 「new pm」もしくは「node pm」である

以上!

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?