|
5 | 5 | A node.js module implementing the
|
6 | 6 | [MySQL protocol](http://forge.mysql.com/wiki/MySQL_Internals_ClientServer_Protocol).
|
7 | 7 |
|
| 8 | +## Sponsors |
| 9 | + |
| 10 | +* [Joyent](http://www.joyent.com/) |
| 11 | + |
| 12 | +I'm working on this driver because I need it for my own startup |
| 13 | +([transloadit.com][transloadit]), but it's a big project (~100-200 hours) with |
| 14 | +obvious benefits to other companies who are using MySql. |
| 15 | + |
| 16 | +So if your company could benefit from a well-engineered node.js mysql driver, |
| 17 | +I would greatly appriciate any sponsorship you may be able to provide. Contact |
| 18 | + |
| 19 | + |
| 20 | +Of course I'm also happy about code contributions. If you're interested in |
| 21 | +working on features, just get in touch so we can talk about API design and |
| 22 | +testing. |
| 23 | + |
| 24 | +[transloadit]: http://transloadit.com/ |
| 25 | + |
8 | 26 | ## Design Goals
|
9 | 27 |
|
| 28 | +* TDD: All code is written using test driven development, code coverage should approach 100% |
10 | 29 | * Simplicity: The MySQL protocol is easy, a good parser should reflect that
|
11 | 30 | * Efficiency: Use fast algorithms, buffers and as little memory as possible.
|
12 | 31 | * Portability: Should run anywhere node runs
|
13 | 32 | * Completeness: The goal is to support the full MySQL API.
|
| 33 | +* Compatibility: MySql >= 4.1 |
14 | 34 |
|
15 | 35 | ## Tutorial
|
16 | 36 |
|
@@ -164,11 +184,3 @@ At this point the module is ready to be tried out, but a lot of things are yet t
|
164 | 184 | ## License
|
165 | 185 |
|
166 | 186 | node-mysql is licensed under the MIT license.
|
167 |
| - |
168 |
| -## Sponsors |
169 |
| - |
170 |
| -* [Joyent](http://www.joyent.com/) |
171 |
| - |
172 |
| -This is a big effort. If your company could benefit from a top-notch MySQL driver |
173 |
| -for node, a small sponsorship payment would be greatly appreciated. Contact |
174 |
| - |
|
0 commit comments