Skip to content

Instantly share code, notes, and snippets.

View vtiwarirg's full-sized avatar

Virendra Tewari vtiwarirg

  • 21:06 (UTC +05:30)
View GitHub Profile
@clarle
clarle / app.js
Created July 26, 2012 07:35
Short tutorial on how to use Express and node-mysql
// Module dependencies
var express = require('express'),
mysql = require('mysql');
// Application initialization
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',