Using MySQL with Node.js
New to Node.js and wondering if you can use your old friend MySQL with it? Good news - it is surprisingly very easy to get MySQL working with Node.js. This article guides you through the process.
First of all, you'll need to install an aptly named Node.js module called .
[code]
$ npm install mysql
[/code]
The module is entirely written in Node.js, and implements an async MySQL client. Mad respect to t ...