Skip to content

Instantly share code, notes, and snippets.

View orla11's full-sized avatar
🎯
Focusing

0rlaDev orla11

🎯
Focusing
View GitHub Profile
@orla11
orla11 / passport.js + MySql
Last active January 15, 2017 17:27 — 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',