Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 433 Bytes

File metadata and controls

17 lines (13 loc) · 433 Bytes

Back-end with no database

This folder implements our Q&A api without any database. Instead data is stored in memory.

Installation

yarn install

You can run npm install instead.

Start from scratch

yarn add express uuid

Practice

Challenge yourself by trying to create your own back-end.

  • Create Express server
  • Use Postman to test endpoints
  • Add routes
  • Update the in-memory data within the route handlers