MySQL
概要
MySQL用の接続に関する説明
インストール
package.jsonを編集
{
"name": "application-name",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node app"
},
"dependencies": {
"express": "3.1.0",
"jade": "*",
"mongodb": ">= 0.9.0",
"mysql": ">= 0.9.0"
}
}
「npm install」でインストールを実行
D:\Tools\Works\nodejs_test\webexpress01>npm install
npm WARN package.json [email protected] No README.md file found!
npm http GET https://registry.npmjs.org/mysql
npm http 200 https://registry.npmjs.org/mysql
npm http GET https://registry.npmjs.org/mysql/-/mysql-2.0.0-alpha7.tgz
npm http 200 https://registry.npmjs.org/mysql/-/mysql-2.0.0-alpha7.tgz
npm http GET https://registry.npmjs.org/require-all/0.0.3
npm http GET https://registry.npmjs.org/bignumber.js/1.0.1
npm http 200 https://registry.npmjs.org/bignumber.js/1.0.1
npm http GET https://registry.npmjs.org/bignumber.js/-/bignumber.js-1.0.1.tgz
npm http 200 https://registry.npmjs.org/bignumber.js/-/bignumber.js-1.0.1.tgz
npm http 200 https://registry.npmjs.org/require-all/0.0.3
npm http GET https://registry.npmjs.org/require-all/-/require-all-0.0.3.tgz
npm http 200 https://registry.npmjs.org/require-all/-/require-all-0.0.3.tgz
[email protected] node_modules\mysql
├── [email protected]
└── [email protected]
D:\Tools\Works\nodejs_test\webexpress01>
最終更新:2013年04月10日 23:33