Skip to content

Instantly share code, notes, and snippets.

View C0dekid's full-sized avatar
🎯
Focusing

Jerry C0dekid

🎯
Focusing
  • 15:22 (UTC +02:00)
View GitHub Profile
@C0dekid
C0dekid / passport.js
Created February 25, 2018 14:42
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',