[JS] package.json のファイルを作成する

package.json を作成するには、npm install を実行します。

npm init

実行すると、内容を質問されます。すべて Enter で進んでも問題ありません。

$ 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: (node)
version: (1.0.0)
description:
entry point: (index.js)
test command:
git repository:
keywords:
author:
license: (ISC)
About to write to /Users/kidatti/temp/node/package.json:

{
  "name": "node",
  "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

実際に作成されたファイルです。

{
  "name": "node",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC"
}

実際は、各種ライブラリをインストールすることが多いと思います。その場合は、npm install することにより package.json を作成することも可能です。

npm install axios

実行すると axios が必要であることが記載された package.json が作成されます。

{
  "dependencies": {
    "axios": "^1.4.0"
  }
}

JavaScript

Posted by kidatti