This is an opinionated isomorphic preact and redux starter-kit.
It includes all your favourite libraries and can be as little as 24kB
but most likely less than 80kB
for the client to load your entire app!
It depends on how many of the great stuff you actually need for your app.
The goal is to use the same code to achieve
- a PWA (progressive web app)
- a SPA (single page application) that can be serverless and hosted on a CDN
- a SSR (server-side rendered) app with SEO (search engine optimization) support
- a serverless SSR (running in AWS Lambda and static resources in AWS S3)
preact
is react
in only 3kB
We also added preact-compat
in case you need it, otherwise just get rid of it.
Routing done right with components. ConnectedRouter
on the client and StaticRouter
on the server
allow for perfect isomorphic routing.
Single immutable state, reducers and actions to structure and master even the biggest apps.
Use rambda
to mutate state - this allows your state to be POJO (Plain Old JavaScript Objects)
and make development so much more fun.
Reactive programming of your actions allows for easy composition of even the most complex async action stream flows. This can replace all the other redux middleware you used so far.
Internationalization that uses standards and works client and server-side. With support for all the stuff you need like genderization, pluralization, date and time.
There are even some helper scripts to export/import PO files to communicate with your translators.
This will extract all translations from your code and merge them into PO files. It will NOT override already existing translations but only add new translations to the PO files. You then send the PO files to your translator and he will use his tools to only translate the new untranslated translations.
This will import all translations from the PO files within the given whitelabel. You do this after you received all translations back from the translator and before you build.
If you are building just for your own company, then just have only a single whitelabel and that's totally fine.
But we also want to enable you to build for multiple whitelabels. This allows you to have different translations for different whitelabels. It is a very common thing in enterprise applications and translations really differ between whitelabels (believe me).
Obviously the latest and greatest webpack with all the bells and whistles to achieve highly optimized builds.
With a huge thanks to @developit we can now run the preact app on the server without the need for complex pre-render state calculations and render-to-string.
This gives us very clean code that is almost identical on server and client-side and performs great.
You can find all the details here.
100/100 Lighthouse rating if you decide to use this repo to build a PWA.
Otherwise just get rid of the service worker at the end of index.client.js
.
Isomorphic modular lightweight preact material design based on the material-components-web sass styles.
Replace it with your own front-end components if you like. Just make sure they are isomorphic.
You can replace this easily with whatever data fetching technology you like but we really encourage you to embrace GraphQL.
If you are using GraphQL
and Redux
you are most likely to normalize any GraphQL Query
into a normalized entity store
.
To make this as simple and easy to use as possible we provide a script that can extract all
GraphQL Entities
from a given GraphQL Endpoint
and automatically create the Entity Reducers
for you.
You run this script initially and then whenever the GraphQL Schema
is about to change.
If you don't make any manual changes to any of the Entity Reducers
you can just run
npm run graphql:override
This will generate and override your Entity Reducers
automatically and you are ready to go.
If you are extending the Entity Reducers
with additional functionality you must run
npm run graphql:merge
This will generate all the Entity Reducers
in the scripts/graphql/generated
folder.
You can now manually merge the generated
...Reducer.js
files into src/entities
and
types.json
file into src/graphql
without losing any of the extensions you've previously added to the Entity Reducers
.
- Either provide your own ssl certificates of change the code to use http instead of https!
- To get a response from the GraphQL API you need to run your own GraphQL server,
adjust the query and create the
Entity Reducers
(see above for details)! Otherwise just replace it with your ordinary REST APIs. - Fork and clone this repo.
npm install
You might want to change the following parameters within the dev and build run-commands:
BASEURL
will be injected into theindex.html
and therouter history
PORT
is the port to be used by the development serverHOST
is the host to be used by the development server
"build:client": "cross-env NODE_ENV=production BABEL_ENV=production TARGET=web BASEURL=/ webpack",
"build:server": "cross-env NODE_ENV=production BABEL_ENV=production TARGET=node BASEURL=/ webpack",
"dev": "cross-env NODE_ENV=development TARGET=web BASEURL=/ PORT=8080 HOST=localhost webpack-dev-server --inline --hot --progress",
"dev:secure": "cross-env NODE_ENV=development TARGET=web BASEURL=/ PORT=8080 HOST=my-domain.com webpack-dev-server --inline --hot --progress --https",
You can run development with http
or https
. Production is served only with https
.
To do so you have to provide your own SSL certificates as certificates/domain.key
and certificates/domain.cert
.
Make sure you don't check those in to GIT!!!
npm run dev
runs the development version via http
npm run dev:secure
runs the development version via https
in which case you have to provide
your own ssl certificate in the certificates
folder.
npm run build
node dist/server/main
This serves via https and requires you to provide your own certificates since it is intended to be for production.
The server will only render and serve the site to the client when the ROOT_STATE_READY_TO_RENDER
action has been dispatched.
This example dispatches this action once the first GraphQL Query
had a successful response.
You can replace that easily with your own custom logic. Just make sure you dispatch the ROOT_STATE_READY_TO_RENDER
action
when you are ready to render and serve the site to the client.
To build for a real serverless SSR just run npm run build:serverless
- This will give you a
client
folder.- Create a
S3
bucket that will host yourstatic resources
. - Create a subfolder called
_
within that bucket. - Copy everything within the
client
folder into the_
subfolder in theS3
bucket.
- Create a
- This will also give you the server files.
- Create a
Lambda
function. - Zip the
index.js
andclient
folder together into an archive and upload it into yourLambda
function.
- Create a
- Now create a
CloudFront Distribution
with 2origins
.- The
default origin
will point to theAPI Gateway Endpoint
that calls theLambda Function
. - The resource
origin
uses the_
path to point to theS3
static resources bucket.
- The
If you have no idea what all this is or you like more details, please contact me. I have terraform
scripts that build
all of this infrastructure automatically.
You are very welcome to report issues, PRs and become a contributor.