【学習ノート】nodejsのカバン管理npm/yarn
8246 ワード
NPM:node package management yarn:Yet Another Resource Negotiator npm公式接続:npm公式サイトは、ローカルにpackage.jsonを作成し、以下の内容を書き込みます.
参考文献:instant nodejs starter
{
"name": "my-example-app",
"version": "0.1.0",
"dependencies": {
"request": "*",
"nano": "3.3.x",
"async": "~0.2"
}
}
npm installまたはyarn installを実行して、実行完了を待って、npm lsを実行して、ファイルツリーがあります.$ npm install
npm WARN deprecated node-uuid@1.4.8: Use uuid module instead
npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN my-example-app@0.1.0 No description
npm WARN my-example-app@0.1.0 No repository field.
npm WARN my-example-app@0.1.0 No license field.
$ npm ls
my-example-app@0.1.0 /home/ec2-user/learn_node
├── async@0.2.10
├─┬ nano@3.3.8
│ ├── errs@0.2.4
│ ├─┬ follow@0.8.0
│ │ └── request@2.2.9
│ ├─┬ request@2.16.6
│ │ ├── aws-sign@0.2.0
│ │ ├── cookie-jar@0.2.0
│ │ ├── forever-agent@0.2.0
│ │ ├─┬ form-data@0.0.10
│ │ │ ├── async@0.2.10 deduped
│ │ │ ├─┬ combined-stream@0.0.7
│ │ │ │ └── delayed-stream@0.0.5
│ │ │ └── mime@1.2.11 deduped
│ │ ├─┬ hawk@0.10.2
│ │ │ ├─┬ boom@0.3.8
│ │ │ │ └── hoek@0.7.6 deduped
│ │ │ ├─┬ cryptiles@0.1.3
│ │ │ │ └── boom@0.3.8 deduped
│ │ │ ├── hoek@0.7.6
│ │ │ └─┬ sntp@0.1.4
│ │ │ └── hoek@0.7.6 deduped
│ │ ├── json-stringify-safe@3.0.0
│ │ ├── mime@1.2.11
│ │ ├── node-uuid@1.4.8
│ │ ├── oauth-sign@0.2.0
│ │ ├── qs@0.5.6
│ │ └── tunnel-agent@0.2.0
│ └── underscore@1.4.4
└─┬ request@2.81.0
├── aws-sign2@0.6.0
├── aws4@1.6.0
├── caseless@0.12.0
├─┬ combined-stream@1.0.5
│ └── delayed-stream@1.0.0
├── extend@3.0.1
├── forever-agent@0.6.1
├─┬ form-data@2.1.4
│ ├── asynckit@0.4.0
│ ├── combined-stream@1.0.5 deduped
│ └── mime-types@2.1.17 deduped
├─┬ har-validator@4.2.1
│ ├─┬ ajv@4.11.8
│ │ ├── co@4.6.0
│ │ └─┬ json-stable-stringify@1.0.1
│ │ └── jsonify@0.0.0
│ └── har-schema@1.0.5
├─┬ hawk@3.1.3
│ ├─┬ boom@2.10.1
│ │ └── hoek@2.16.3 deduped
│ ├─┬ cryptiles@2.0.5
│ │ └── boom@2.10.1 deduped
│ ├── hoek@2.16.3
│ └─┬ sntp@1.0.9
│ └── hoek@2.16.3 deduped
├─┬ http-signature@1.1.1
│ ├── assert-plus@0.2.0
│ ├─┬ jsprim@1.4.1
│ │ ├── assert-plus@1.0.0
│ │ ├── extsprintf@1.3.0
│ │ ├── json-schema@0.2.3
│ │ └─┬ verror@1.10.0
│ │ ├── assert-plus@1.0.0
│ │ ├── core-util-is@1.0.2
│ │ └── extsprintf@1.3.0 deduped
│ └─┬ sshpk@1.13.1
│ ├── asn1@0.2.3
│ ├── assert-plus@1.0.0
│ ├─┬ bcrypt-pbkdf@1.0.1
│ │ └── tweetnacl@0.14.5 deduped
│ ├─┬ dashdash@1.14.1
│ │ └── assert-plus@1.0.0
│ ├─┬ ecc-jsbn@0.1.1
│ │ └── jsbn@0.1.1 deduped
│ ├─┬ getpass@0.1.7
│ │ └── assert-plus@1.0.0
│ ├── jsbn@0.1.1
│ └── tweetnacl@0.14.5
├── is-typedarray@1.0.0
├── isstream@0.1.2
├── json-stringify-safe@5.0.1
├─┬ mime-types@2.1.17
│ └── mime-db@1.30.0
├── oauth-sign@0.8.2
├── performance-now@0.2.0
├── qs@6.4.0
├── safe-buffer@5.1.1
├── stringstream@0.0.5
├─┬ tough-cookie@2.3.2
│ └── punycode@1.4.1
├─┬ tunnel-agent@0.6.0
│ └── safe-buffer@5.1.1 deduped
└── uuid@3.1.0
もうちょっと見てください.プロジェクトのルートディレクトリの下にnode_がもう一つあります.modulesフォルダです.すべての関係がインストールされてから、私たちは引用できます.var request = require('request');
var nano = require('nano');
var async = require('async');
NPMはデフォルトでnode_にいますmodulesフォルダからあなたが導入したモジュールを検索します.このフォルダにモジュールが見つからないと、nodejsはrootディレクトリの下まで検索します.参考文献:instant nodejs starter