ganapativs / preact-redux-react-router-starter

Webpack3 boilerplate for building SPA / PWA / offline front-end apps with Preact, Redux & React router

Home Page:https://preact-redux-react-router-starter.surge.sh/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

preact-redux-react-router-starter

Webpack3 boilerplate for building SPA / PWA / offline front-end apps with ⚛️ Preact

Using preact-redux-react-router-starter will kickstart your next application! 💯 It is designed to fit the "90% use-case" for those who want to build offline-first web apps (see features below).

🚩 Important: This is meant for client-side apps only; there is no support included for universal / server-side rendering.

Please note: Boilerplate does not incorporate the latest "css-in-js" or "css modules" technique. Instead, the more traditional approach is taken, wherein styles and scripts are kept separate. That said, you may certainly and easily take that route if desired. ✅


⚠️ Boilerplate & commands will evolve as my own development process does. ⚠️


Install

git clone https://github.com/ganapativs/preact-redux-react-router-starter
cd preact-redux-react-router-starter
npm install
npm run build
npm start

Pro Tip: Use Yarn to install dependencies 3x faster than NPM!

Features

  • Offline Caching (via serviceWorker)
  • Stylus & Autoprefixer
  • Asset Versioning (aka "cache-busting")
  • babel-env (Automatically use required babel plugins to support ES6 & ES7 on latest browsers), babel-stage-0 (Latest features) & babel-sitrep support
  • Hot Module Replacement (HMR) for all files
  • Preact's Developer Tools
  • Redux Developer Tools

Development

Commands

Any of the following commands can (and should 😉) be run from the command line.

If using Yarn, all instances of npm can be replaced with yarn. 👌

build

$ npm run build

Compiles all files. Output is sent to the dist directory.

start

$ npm start

Runs your application (from the dist directory) in the browser.

watch

$ npm run watch

Like start, but will auto-compile & auto-reload the server after any file changes within the src directory.

Preact Developer Tools

You can inspect and modify the state of your Preact UI components at runtime using the React Developer Tools browser extension.

  1. Install the React Developer Tools extension
  2. Import the preact/devtools module in your app
  3. Reload and go to the 'React' tab in the browser's development tools

Redux Developer Tools

You can inspect redux actions and store changes at runtime using the Redux Developer Tools browser extension.

  1. Install the Redux Developer Tools extension
  2. Configure redux store to use extension(If available)
  3. Reload and go to the 'Redux' tab in the browser's development tools

This boilerplate is based on Preact Starter by Luke Edwards.

License

MIT © Ganapati V S

About

Webpack3 boilerplate for building SPA / PWA / offline front-end apps with Preact, Redux & React router

https://preact-redux-react-router-starter.surge.sh/

License:MIT License


Languages

Language:JavaScript 83.5%Language:HTML 10.4%Language:CSS 6.1%