Coder Social home page Coder Social logo

express-mongoose-lab's Introduction

IT EventLogger API: Express & Mongoose

Set Up

Fork and clone this repository. After cloning down your fork...

 $ cd express-mongoose-lab
 $ npm install

Instructions

For this lab, Create a RESTful API using the two separate methods.

Requirements

  1. There is already a package.json file with the dependencies necessary for running the tests. You will have to manually npm install everything else required to build your application server with Express and Mongoose.

  2. Create a model Event with 6 fields:

  • EventTitle(str) (required)
  • Description (str) (required)
  • ReportedBy (str) (required)
  • HandledBy (str) (default: โ€œโ€)
  • Completed(Boolean) (default: False)
  • DateReported(default: now)
  1. You should have 3 routes. They should return JSON unless otherwise specified.
  • GET '/' which should redirect to `/events'
  • GET '/events' which return a list of events
  • GET '/events/:someParameter' where :someParameter grabs a single Event from the database by id. NOTE You can name :someParameter whatever you want ๐Ÿ˜ฌ
  1. You should be able to POST, DELETE and UPDATE.

  2. Localhost server must be able to run cross domain for fetching info from the API.

    NOTES:

  • You can refer to previous lessons and notes that you have if you forget syntax.
  • We've provided the necessary configuration for the database connection, some of the Model definition, and some of the basic express app boilerplate. Don't delete any of this! Your task is to add to what is provided.
  • Test with postman!

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.