Skip to content

Instantly share code, notes, and snippets.

View CatherineDesigner's full-sized avatar
💭
junior

CatherineDesigner

💭
junior
View GitHub Profile
@CatherineDesigner
CatherineDesigner / server.js
Created April 19, 2019 16:15 — forked from JosephLivengood/server.js
FCC Advanced Node and Express Checkpoint 3
'use strict';
const express = require('express');
const bodyParser = require('body-parser');
const fccTesting = require('./freeCodeCamp/fcctesting.js');
const session = require('express-session');
const passport = require('passport');
const mongo = require('mongodb').MongoClient;
const ObjectID = require('mongodb').ObjectID;
const LocalStrategy = require('passport-local');