- Task urk: https://github.com/rolling-scopes-school/tasks/tree/master/react/modules
- Deploy: https://rick-and-morty-maksim-maksimenko.netlify.app/
Using Vite and Jest for module testing, Axios for making requests, and TypeScript for type checking.
The project follows a standard Vite project structure with the following key components:
src- contains the source codedist- contains the build outputtests- contains the unit testsvite.config.ts- contains the Vite configuration
The project depends on the following libraries:
vite- build toolaxios- promise-based HTTP client for making requestsvitets- testing frameworktypescript- language for application developmentframer-motion- animation library
## Deployment
## Run Locally
Clone the project
git@github.com:mskmee/rss_react.git
Go to the project directory
cd rss_react
Install dependencies
npm i
Start the server
npm run start
Tests coverage
npm run coverage
## Build
To build this project run
npm run build
## Running Tests
To run tests, run the following command
npm run test