はじめに
npm init
コマンドを実行することで、作成されるパッケージファイルpackage.json
は、Node.jsプロジェクトの設定や依存関係を管理するためのJSON形式のファイルである。
JSON形式のファイルについては次の記事でまとめている。
パッケージファイルの作成
対話式
次のコマンドで、対話式(ターミナル上で出力された文に従って情報を入力すること)でパッケージファイルを作成することができる。
npm init
動作結果を次に示す。
$ npm init
This utility will walk you through creating a package.json file.
It only covers the most common items, and tries to guess sensible defaults.
See `npm help init` for definitive documentation on these fields
and exactly what they do.
Use `npm install <pkg>` afterwards to install a package and
save it as a dependency in the package.json file.
Press ^C at any time to quit.
package name: (プロジェクト名)
-
Ctrl + C
でパッケージファイルの作成をキャンセルできる -
プロジェクト名
は開いているフォルダ名である - パッケージ名の入力を求められる
以下に例を示す。
This utility will walk you through creating a package.json file.
It only covers the most common items, and tries to guess sensible defaults.
See `npm help init` for definitive documentation on these fields
and exactly what they do.
Use `npm install <pkg>` afterwards to install a package and
save it as a dependency in the package.json file.
Press ^C at any time to quit.
package name: (新しいフォルダー) p5-mysketch
version: (1.0.0)
description:
entry point: (index.js)
test command:
git repository:
keywords:
author:
license: (ISC)
About to write to C:\Users\ユーザ名\Desktop\react\新しいフォルダー\package.json:
{
"name": "p5-mysketch",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
Is this OK? (yes) yes
非対話式
次のコマンドで、非対話式(自動的にプログラムが処理すること)でパッケージファイルを作成することができる。何も指定しない場合、パッケージファイルに必要な情報については仮の内容が書き込まれる。
npm init -y
参考