Skip to content

Instantly share code, notes, and snippets.

View jhoyberrocal's full-sized avatar

Jhoy Berrocal jhoyberrocal

View GitHub Profile
@jhoyberrocal
jhoyberrocal / passport.js
Created April 26, 2017 16:22 — 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',