Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kettanaito/movie-app
Movie App for the "Mocking REST and GraphQL APIs with MSW" course on Egghead.
https://github.com/kettanaito/movie-app
course egghead movies msw mswjs
Last synced: about 2 months ago
JSON representation
Movie App for the "Mocking REST and GraphQL APIs with MSW" course on Egghead.
- Host: GitHub
- URL: https://github.com/kettanaito/movie-app
- Owner: kettanaito
- Created: 2023-04-21T14:48:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-13T13:59:54.000Z (7 months ago)
- Last Synced: 2024-10-30T05:28:50.145Z (2 months ago)
- Topics: course, egghead, movies, msw, mswjs
- Language: TypeScript
- Homepage: https://egghead.io/courses/mock-rest-and-graphql-apis-with-mock-service-worker-8d471ece
- Size: 278 KB
- Stars: 19
- Watchers: 2
- Forks: 15
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Mock REST and GraphQL APIs with Mock Service Worker
## System requirements
- [Node.js](https://nodejs.org/) `>=18`
- [npm](https://www.npmjs.com/) `>=v8.16.0`To verify those tools and their versions, you can run this:
```sh
node --version
npm --version
```## Setup
You can use this repository to follow along the lessons. If you wish so, start by cloning the repository:
```sh
git clone https://github.com/kettanaito/movie-app
cd movie-app
npm install
```Once you're set, start the application by running this command:
```sh
npm run dev
```### Viewing the complete course
You can checkout the `completed` branch to view the state of the application at the end of the course. Feel free to use that as a reference or as a complete example.
```sh
git checkout completed
```## Questions & feedback
If you have any questions while working through the course, or would like to share any feedback, please do so in my [**Discord server**](https://discord.gg/z29WbnfDC5).