Skip to content
This repository has been archived by the owner on Oct 11, 2021. It is now read-only.

Latest commit

 

History

History
37 lines (22 loc) · 1009 Bytes

README.md

File metadata and controls

37 lines (22 loc) · 1009 Bytes

svcc-auth

This project contains code which shows how to implement your own user authentication in a Node.js web app with MongoDB.

The talk slides can be found on SpeakerDeck.

Installation

Installing this project is simple, run the following commands:

$ git clone https://github.com/rdegges/svcc-auth.git
$ cd svcc-auth
$ npm install
$ sudo mongod &  # start mongodb locally
$ npm start      # fire up the project!

NOTE: You must have MongoDB installed and working locally in order to run this project.

Purpose

This project shows how to implement basic user authentication in a Node.js web app. The accompanying talk explains how HTTP authentication works in a group-up way for new Node.js (and web) developers.

Questions

Got questions? Hit me up! I'm [email protected].