Skip to content

Boilerplate for creating a Chrome Extention with React, TypeScript, emotion jss, jest and Webpack

License

Notifications You must be signed in to change notification settings

liron-navon/chrome-extention-typescript-react-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

chrome-extention-typescript-react-starter

Boilerplate for creating a Chrome Extension with React, TypeScript, emotion jss, jest and Webpack

Usage

  1. Clone
  2. Update HTML name in package.json (effects both html title and manifest name)
  3. Install dependencies with npm install
  4. Run hot module reload dev server with npm run dev
  5. Open chrome://extensions in chrome, activate development mode, and select load unpacked, pick your dist folder and your'e done.

and you should be greeted with the following popup: screenshot

  • You can also run npm run build which will also generate a zip file inside dist with the name of the repo prefixed by the environment, which you should upload to google when publishing the extension.
  • To change version just run npm version 1.4.2 && git push --tags or whatever version you want, please notice that the version must be 3 integers separated by a dot, for deployment in the chrome store, so 1.4.2-a wont work properly.

Structure

.
├── dist                # where you'r final build will be (when running build you will also have the zip file here)
├── src                 # Source files
    ├── assets          # images, icons, etc...
    ├── popup           # used for our front end, use the webpacka alias "popup" to access the files inside
    ├── background      # used for background operations, use the webpacka alias "background" to access the files inside
    ├── manifest        # name, description and version are derived from package.json
├── tests               # test files, using jest
├── coverage            # jest will create this when you run tests
└── README.md

Development Tips

  • Run yarn run dev in one terminal window
  • Run yarn run devtest in another terminal window

This will allow you to actively write app code and unit test code with continuous webpack HMR and test runs.


Icons made by Smashicons from www.flaticon.com is licensed by CC 3.0 BY

About

Boilerplate for creating a Chrome Extention with React, TypeScript, emotion jss, jest and Webpack

Resources

License

Stars

Watchers

Forks

Packages

No packages published