Code Monkey home page Code Monkey logo

16-basic-auth's Introduction

CF 16: Basic Auth

Submission Instructions

  • fork this repository & create a new branch for your work
  • write all of your code in a directory named lab- + <your name> e.g. lab-susan
  • push to your repository
  • submit a pull request to this repository
  • submit a link to your PR in canvas
  • write a question and observation on canvas

Learning Objectives

  • students will be able to create basic authorization middleware
  • students will be able to test basic authorization for signup/signin routes

Requirements

Configuration

  • package.json
  • .eslintrc
  • .gitignore
  • .env
  • README.md

Feature Tasks

  • create the following directories to organize your code:
    • lib
    • model
    • route
    • test
  • create an HTTP server using express
  • using mongoose, create a User model with the following properties and options:
    • username - required and unique
    • email - required and unique
    • password - required - this must be hashed and can not stored as plain text
    • compareHash - unique
  • use the npm debug module to log function calls that are used within your application
  • use the express Router to create a custom router for allowing users to sign up and sign in
  • use the npm dotenv module to house the following environment variables:
    • PORT
    • MONGODB_URI
    • APP_SECRET (used for signing and verify tokens)

Server Endpoints

/api/signup

  • POST request
  • the client should pass the username and password in the body of the request
  • the server should respond with a token (generated using jwt)
  • the server should respond with 400 Bad Request to a failed request

/api/signin

  • GET request
  • the client should pass the username and password to the server using a Basic: authorization header
  • the server should respond with a token for authenticated users
  • the server should respond with 401 Unauthorized for non-authenticated users

Tests

  • create a test that will ensure that your API returns a status code of 404 for any routes that have not been registered
  • /api/signup
  • POST - test 400, if no request body has been provided or the body is invalid
  • POST - test 200, if the request body has been provided and is valid
  • /api/signin
  • GET - test 401, if the user could not be authenticated
  • GET - test 200, responds with token for a request with a valid basic authorization header

16-basic-auth's People

Contributors

sjschmidt44 avatar

Watchers

James Cloos avatar Joseph Waine avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.