Skip to content

Instantly share code, notes, and snippets.

View zhoferitza's full-sized avatar

Zachary Hoferitza zhoferitza

  • Hoferitza Development
  • California
View GitHub Profile
@zhoferitza
zhoferitza / passport.js
Created March 15, 2019 00:57 — 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',