git clone https://github.com/xingyanhuan/fluorite-restful-sample.git cd fluorite-restful-sample npm install
restful-sample(※リポジトリ名です。任意の名称を用いてください) │ server.js │ .gitattributes │ .gitignore │ README.md │ ├─src ├─test └─client_script
.gitattributes .gitignore README.md
package.json
npm install mocha chai sinon promise-test-helper --save-dev npm install mssql@3.3.0 date-utils@1.2.21 qs@6.4.0 --save
"scripts": { "test": "mocha", "start": "node server.js"
"scripts": { "test": "node_modules\\.bin\\mocha", "test": "mocha", "start": "node server.js"
npm start
set SQL_USER=[ローカルSQL Serverのユーザー名] set SQL_PASSWORD=[ローカルSQL Serverの上記のアカウントに設定したパスワード] set SQL_SERVER=[ローカルSQL Serverに設定した名称] set SQL_DATABASE=[ ローカルSQL Serverのデータベース名 ] npm start