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?

備忘録カレンダーAdvent Calendar 2024

Day 12

npm initで作成されるjsonファイルについて

Posted at

はじめに

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

参考

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?