Skip to content

Instantly share code, notes, and snippets.

View jordanlfc's full-sized avatar

Jordan Fear jordanlfc

View GitHub Profile
@jordanlfc
jordanlfc / passport.js
Created July 16, 2019 04:54 — 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',