Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 839 Bytes

README.md

File metadata and controls

24 lines (21 loc) · 839 Bytes

API Lesson Starter Code

Introduction

An starter pack for visualizing COVID-19 data!

Setup:

  1. Clone this repository from your terminal.
git clone https://github.com/rrrliu/api-lesson.git
cd api-lesson
  1. Make sure you have Node.js and MongoDB installed.
  2. Install all dependencies within the client/ and server/ folders with these in your terminal.
cd client/
npm install
cd ../server
npm install
cd ..
  1. Follow along with the instructions in the article!

Solutions:

If you're stuck or lost, you can view the completed files on either the solution-mongoDB or solution-mongoose branch (they both do the same thing, just with a different framework).