Skip to content

Instantly share code, notes, and snippets.

View rodrigarau's full-sized avatar
🚀
Feeling positive!

Rodrigo Garau rodrigarau

🚀
Feeling positive!
View GitHub Profile
@rodrigarau
rodrigarau / passport.js
Created January 6, 2016 16:15 — forked from manjeshpv/passport.js
Passport.js using MySQL for Authentication with Express
// config/passport.js
// load all the things we need
var LocalStrategy = require('passport-local').Strategy;
var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',