Skip to content

Instantly share code, notes, and snippets.

@DeckedTexas
DeckedTexas / app.js
Created June 29, 2016 01:51 — 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',