Skip to content

Commit 8167d81

Browse files
author
Piotr Grabowski
committed
oh yeah, package.json file
1 parent e87b032 commit 8167d81

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ node.js playground with mysql
22
===
33
```docker run --name mysql -e MYSQL_ROOT_PASSWORD=pass -p 3306:3306 mysql:5```
44

5+
.then(`npm install`)
6+
57
.then(`docker exec -it mysql mysql -uroot -ppass`)
68

79
.then(`create database tutorial;`)

package-lock.json

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "nodejs-mysql-tutorial-routing",
3+
"version": "1.0.0",
4+
"description": "a tutorial on nodejs mysql and express",
5+
"main": "index.js",
6+
"dependencies": {
7+
"mysql": "^2.16.0",
8+
"express": "^4.16.3"
9+
},
10+
"scripts": {
11+
"test": "echo \"Error: no test specified\" && exit 1"
12+
},
13+
"repository": {
14+
"type": "git",
15+
"url": "git+https://github.com/unamatasanatarai/nodejs-mysql-tutorial-routing.git"
16+
},
17+
"keywords": [
18+
"nodejs",
19+
"nodejs-server",
20+
"nodejs-tutorial",
21+
"nodejs-mysql"
22+
],
23+
"author": "UnamataSanatarai",
24+
"license": "UNLICENSED",
25+
"bugs": {
26+
"url": "https://github.com/unamatasanatarai/nodejs-mysql-tutorial-routing/issues"
27+
},
28+
"homepage": "https://github.com/unamatasanatarai/nodejs-mysql-tutorial-routing#readme"
29+
}

0 commit comments

Comments
 (0)