Skip to content

Latest commit

 

History

History
64 lines (35 loc) · 2.09 KB

README.md

File metadata and controls

64 lines (35 loc) · 2.09 KB

Getting Started with Create React App

This project was bootstrapped with Create React App.

Deploying Extension

Developers:

If this is your first time installing the extension run npm ci to install the dependencies for the project.

run npm start to create a live version in the browser

run npm run build to create an optimized version and follow the steps below to install to chrome.

Install in Chrome

After creating a build using npm run build you can install the extension in chrome by navigating to chrome://extensions then enabling devloper mode. After developer mode is enabled select load unpacked then select the build folder generated by npm run build

Available Scripts

In the project directory, you can run:

npm ci

Installs necessary dependencies for the the app.

npm start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

npm test

Launches the test runner in the interactive watch mode.
See the section about running tests for more information.

npm run build

Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.
Your app is ready to be deployed!

See the section about deployment for more information.

npm run lint

Runs ESLint on all files with the extensions .js, .jsx, .ts, and .tsx. This will alert you about any lint violations.

npm run lint-fix

Runs ESLint on all files with the extensions .js, .jsx, .ts, and .tsx. This will attempt to automatically fix any lint violations.

npm run format

Runs prettier code formatter.

Learn More

To learn React, check out the React documentation.