Skip to content

Instantly share code, notes, and snippets.

View AliGx97's full-sized avatar

Ali Hasan Mohammed AliGx97

  • Iraq-Baghdad
View GitHub Profile
@AliGx97
AliGx97 / passport.js
Created January 2, 2021 15:56 — forked from manjeshpv/passport.js
Passport.js using MySQL for Authentication with Express https://manjeshpv.github.io/mean-development-guide-2021/
// 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',