Git Product home page Git Product logo

12-middleware's Introduction

11 Express

Installation

To get started fork then clone this repository to your machine, then navigate to the folder lab-dean. Type npm install to install the dependencies needed. Then I recommend acquiring the program HTTPie to run the commands.

Functionality

This is the back-end for a note making APP using express to make CRUD requests. There are 5 functions usable within this app.

  • POST "api/v1/note Requires title and content values to create a new Note object. An example command on HTTPie would be. http POST http://localhost:3000/api/v1/note title="hello" content="tim"

  • GET "api/v1/note This will get you every Note object saved into the server. To do this you simply type: http http://localhost:3000/api/v1/note

  • GET "api/v1/note/:_id When the id parameter in the link is filled in with the ID of an actual note object it will retrieve you that specific entry. An example: http http://localhost:3000/api/v1/note/12345_6789_1234_56789

  • PUT "api/v1/note/:_id When the id parameter in the link is filled in with the ID of an actual note object it will update the item associated with the typed in ID. An example command: http PUT http://localhost:3000/api/v1/note/12345_6789_1234_56789 title="goodbye" content="tim"

  • DELETE "api/v1/note/:_id When the id parameter in the link is filled in with the ID of an actual note object it will delete the item associated with the typed in ID. Example command: http DELETE http://localhost:3000/api/v1/note/12345_6789_1234_56789

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.