https://github.com/rohankangale2011/react_assignment
A react assignment
https://github.com/rohankangale2011/react_assignment
Last synced: about 2 months ago
JSON representation
A react assignment
- Host: GitHub
- URL: https://github.com/rohankangale2011/react_assignment
- Owner: rohankangale2011
- Created: 2019-07-02T16:56:00.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T03:30:07.000Z (over 2 years ago)
- Last Synced: 2025-01-04T01:43:15.994Z (4 months ago)
- Language: JavaScript
- Size: 4.05 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React assignment
A react assignment application## Description
This application is responsible for fetching the most popular datalist from the NYTimes data set available.## Quickstart
Make sure that that you have create-react-app package installed on your system(either globally or locally). In case you don't have, you can install it
by running the below command:
```
npm install create-react-app -g
```Once installed, run the following commands after cloning the repo. Make sure you run the commands at the project root directory:
```
npm install
```In order to run the application, execute the below command:
```
npm start
```## Test
Testing is been performed using jest & enzyme. Inorder to unit test the application, run the following command:
```
npm run test
```