Giter Site home page Giter Site logo

api-express-counter's Introduction

Express Counter

In this exercise we will build a simple counter API using express.

Learning Objectives

  • Explain how to set up and run an Express application
  • Build a simple Express API and send a HTTP request to an available endpoint using a HTTP client
  • Explain that JSON is a widely-used language-agnostic format for encoding data as attribute value pairs
  • Diagram the request and response cycle for an Express API.
  • Use console.log() and read the result in the server logs

Express Setup

There are already some files and packages included in this repository, including a test suite. You will have to create an src folder and build the express application from scratch.

Use these instructions to help you.

Do not blindly copy commands from the instructions linked above, some steps can be skipped due to the files already included in this repository.

Instructions

Your application should maintain a simple numeric counter and provide the endpoints detailed in the API Spec.

Each route should be detailed in a sequence diagram in the same way that you will have been shown during the morning lesson when covering the request-response cycle. Here is an example: image

Test each route using:

  • fetch (JavaScript)
  • curl (Command Line / Terminal / GitBash)
  • An API testing tool such as Postman or Insomnia

Running tests

Run the following commands from your project directory to run the test suites:

$ npm test # standard criteria
$ npm run test-extensions # extension criteria

You can also focus on one test at a time - use the jest docs to help filter which tests to run. We recommend you run tests manually with the option --forceExit.

For example, for the following test:

it("describes an invidual test", async () => {
  const response = await supertest(app).get("/books")

  expect(response.status).toEqual(200)
})

Here are two ways to run it.

$ npx jest -t "describes an invidual test" --forceExit
$ npx jest test/api/routes/books.spec.js --forceExit # remember to add the 'f' before it()

Extension 1

Add a route as detailed in the API Spec Extension 1. For example, making a PUT request to /counter?value=20 should set the value of the counter to 20. Use the req.query property in your callback to get the value provided. See the express documentation. If no value is provided, the counter should not be changed.

Extension 2

Using route parameters, update your API to keep track of multiple counters. Allow the client to specify the counter name as part of the URL. With this in mind, build the endpoints as detailed in the API Spec Extension 2.

api-express-counter's People

Contributors

dearshrewdwit avatar dependabot[bot] avatar julesnuggy avatar mikemherron avatar vherus avatar

Watchers

 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.