Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aspedm/react-ext-boilerplate
React based simply extensions boilerplate.
https://github.com/aspedm/react-ext-boilerplate
boilerplate chrome-extension chrome-extension-boilerplate chrome-extension-react chrome-extension-starter firefox-webextension react react-boilerplate redux typescript webextensions
Last synced: 15 days ago
JSON representation
React based simply extensions boilerplate.
- Host: GitHub
- URL: https://github.com/aspedm/react-ext-boilerplate
- Owner: Aspedm
- License: mit
- Created: 2020-11-26T15:03:48.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-01-09T18:08:08.000Z (10 months ago)
- Last Synced: 2024-10-16T19:44:48.318Z (29 days ago)
- Topics: boilerplate, chrome-extension, chrome-extension-boilerplate, chrome-extension-react, chrome-extension-starter, firefox-webextension, react, react-boilerplate, redux, typescript, webextensions
- Language: JavaScript
- Homepage:
- Size: 2.81 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
React extension boilerplate
This project contains minimal env and structure for my own extensions.
### Build with
* [Typescript](https://www.typescriptlang.org/)
* [React](https://reactjs.org/)
* [React router](https://github.com/ReactTraining/react-router)
* [Redux](https://redux.js.org/)
* [Webextension polyfill](https://github.com/mozilla/webextension-polyfill)### Browser Support
| [](http://godban.github.io/browsers-support-badges/)
IE / Edge | [](http://godban.github.io/browsers-support-badges/)
Firefox | [](http://godban.github.io/browsers-support-badges/)
Chrome | [](http://godban.github.io/browsers-support-badges/)
Opera | [](http://godban.github.io/browsers-support-badges/)
Vivaldi | [](http://godban.github.io/browsers-support-badges/)
Yandex |
| --------- | --------- | --------- | --------- | --------- | --------- |
| Edge| last 2 versions| last 2 versions| last 2 versions| last 2 versions| last 2 versions |### Hot to use
1. Install dependencies
```sh
yarn
```
2. Start developer mode
```sh
yarn start
```### How to build
- Production build
```sh
yarn build:prod
```- Developer build
```sh
yarn build:dev
```### How to build zip archive for stores
```sh
yarn clean && yarn build:prod && yarn build:zip
```