Skip to content

Instantly share code, notes, and snippets.

View TersooOrsar's full-sized avatar

Tersoo TersooOrsar

View GitHub Profile
@TersooOrsar
TersooOrsar / passport.js
Created July 27, 2018 12:16 — 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',