https://github.com/abbasg-dev/ny-time
https://github.com/abbasg-dev/ny-time
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/abbasg-dev/ny-time
- Owner: abbasg-dev
- Created: 2024-03-15T14:01:28.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-15T14:02:33.000Z (over 2 years ago)
- Last Synced: 2025-12-26T21:52:54.411Z (6 months ago)
- Language: TypeScript
- Size: 372 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NY Times App
This project is a React application for browsing NY Times articles.
## Installation
To install the dependencies, run:
```bash
npm install
## Running the Application
To run the application locally, use:
npm start
This will start the development server and open the application in your default web browser.
## Running Tests
To run tests using Cypress, execute:
npm test
This will open the Cypress Test Runner, where you can select and run individual test suites.
## Generating Coverage Reports
To generate coverage reports, run:
npm run coverage
This will run tests and generate coverage reports using Jest. You can find the generated coverage reports in the coverage directory.
## Additional Commands
## Ejecting Configuration
If you need to customize webpack configurations, you can eject the configuration using:
npm run eject
## Running SonarQube Analysis
To run SonarQube analysis, first make sure you have a SonarQube server running and configured. Then execute:
npm run sonar
This command will run the SonarQube scanner to analyze the codebase and send the results to your SonarQube server.
```