Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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

| [IE / Edge](http://godban.github.io/browsers-support-badges/)
IE / Edge | [Firefox](http://godban.github.io/browsers-support-badges/)
Firefox | [Chrome](http://godban.github.io/browsers-support-badges/)
Chrome | [Opera](http://godban.github.io/browsers-support-badges/)
Opera | [Vivaldi](http://godban.github.io/browsers-support-badges/)
Vivaldi | [Yandex](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
```