Skip to content

Instantly share code, notes, and snippets.

View yujuan123's full-sized avatar

鱼娟 yujuan123

View GitHub Profile
@yujuan123
yujuan123 / app.js
Created May 28, 2017 02:14 — 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',