Commit 3b1365ed2034b7e7145c9b0c320ff3fbdd4d7a3a
1 parent
5034c7fc
Exists in
master
update README.md add how to add this library to package.json (npm)
Showing
1 changed file
with
19 additions
and
0 deletions
Show diff stats
README.md
1 | +### Example project's package.json that add sourcecode/loopback-connector-mysql library | |
2 | +``` | |
3 | +{ | |
4 | + "name": "testnpm", | |
5 | + "version": "1.0.0", | |
6 | + "description": "", | |
7 | + "main": "index.js", | |
8 | + "dependencies": { | |
9 | + "loopback-connector-mysql": "git+ssh://git@git.sourcecode.co.th:1223/sourcecode/loopback-connector-mysql.git" | |
10 | + }, | |
11 | + "scripts": { | |
12 | + "test": "echo \"Error: no test specified\" && exit 1" | |
13 | + }, | |
14 | + "author": "", | |
15 | + "license": "ISC" | |
16 | +} | |
17 | +``` | |
18 | + | |
19 | + | |
1 | 20 | # loopback-connector-mysql |
2 | 21 | |
3 | 22 | [MySQL](https://www.mysql.com/) is a popular open-source relational database management system (RDBMS). The `loopback-connector-mysql` module provides the MySQL connector module for the LoopBack framework. | ... | ... |