https://github.com/frontendmasters/api-design-node
[Course] API Design in Node.js code
https://github.com/frontendmasters/api-design-node
Last synced: 9 months ago
JSON representation
[Course] API Design in Node.js code
- Host: GitHub
- URL: https://github.com/frontendmasters/api-design-node
- Owner: FrontendMasters
- Created: 2015-07-22T07:59:31.000Z (over 10 years ago)
- Default Branch: step-1
- Last Pushed: 2024-03-01T20:56:58.000Z (almost 2 years ago)
- Last Synced: 2024-04-14T01:51:19.063Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://frontendmasters.com/courses/api-design-nodejs/
- Size: 91.8 KB
- Stars: 256
- Watchers: 28
- Forks: 472
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> [!NOTE]
> This repo is from an archived version of the course. Watch the latest version of the course on [frontendmasters.com](https://frontendmasters.com/courses/api-design-nodejs-v4/).
## Getting started
* `npm i`
## Todo
create a basic server with express
that will send back the index.html file on a GET request to '/'
it should then send back jsonData on a GET to /data
## Fetch all branches locally
```
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
```