Skip to content

Instantly share code, notes, and snippets.

View Anthony11-hub's full-sized avatar
📚
learning code

Anthony Mwaura Anthony11-hub

📚
learning code
View GitHub Profile
@Anthony11-hub
Anthony11-hub / passport.js
Created February 4, 2023 18:26 — 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',