Skip to content

Instantly share code, notes, and snippets.

View whalelephant's full-sized avatar
🐘

Belsy whalelephant

🐘
View GitHub Profile
@whalelephant
whalelephant / app.js
Created November 14, 2016 01:37 — forked from clarle/app.js
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',