Skip to content

Commit 221ecf4

Browse files
committed
Syntax highlighting docs
1 parent d2c22fe commit 221ecf4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,20 @@ the path to your mysql_config is /usr/local/bin/mysql_config make
1313
sure to do the following (Ubuntu users need to install the
1414
libmysqlclient-dev package):
1515

16+
```bash
1617
$ export MYSQL_CONFIG=/usr/local/bin/mysql_config
18+
```
1719

1820
Once you are sure that either mysql_config is part of the path or that
1921
you specified the MYSQL_CONFIG environment var, install with npm:
2022

23+
```bash
2124
$ npm install db-mysql
25+
```
2226

2327
## QUICK START ##
2428

29+
```javascript
2530
var mysql = require('db-mysql');
2631
new mysql.Database({
2732
hostname: 'localhost',
@@ -40,6 +45,7 @@ you specified the MYSQL_CONFIG environment var, install with npm:
4045
console.log(rows.length + ' ROWS');
4146
});
4247
});
48+
```
4349

4450
## LICENSE ##
4551

0 commit comments

Comments
 (0)