hut
A minimal framework for isomorphic apps with react and redux.
Usage
This package contains both server and client code. Both sides expose a simple object-oriented interface.
// Create the app.const opts = {}const app = opts// Start serving requests asynchronously.app // You can also stop the server asynchronously.app
// Create the app.const opts = {}const app = opts// Start rendering components synchronously.app
Options
Some options are shared between both sides, while others are specific to each
environment. For shared options, it is recommended to use a single definition
and use Object.assign
to derive server and client options.
const commonOpts = foo: 'x'const serverOpts = Objectconst clientOpts = Object
Common
mountPoint: string
default: 'app'
The id of the HTML element where the application will be rendered and mounted.
stateVariable: string
default: 'initialState'
The name of the global variable where the redux store state will be serialized. The state that is used to render the page on the server is serialized and sent to the client. The client uses this initial state to seed the store in the browser.
routes: react-router Routes
default: []
This route or array of routes is passed directly to the react-router library as-is. The default value is not very useful as it will not match any paths.
See react-router documentation for more details about configuring routes.
reducer: redux reducer function
default: state => return state || {}
This reducer is passed directly to the redux library as-is. The default value is not very useful as it ignores every action, creating a stateless app.
See redux documentation for more details about reducers.
Server
port: integer
default: process.env.PORT || 3000
The port to listen on.
middleware: array of koa middleware
default: []
An array of middleware that is applied directly to the koa server as-is, and in the specified order.
See koa documentation for more details about middleware.
getTitle: function
default: () => ''
A function that is called to generate the page title during rendering. The default value is not very useful as it creates an empty title.
scripts: array of strings
default: []
An array of URLs that are inserted as script tags into the page header. The scripts are inserted with a defer tag so they will not block rendering.
If the script is a relative URL, you must also register middleware to actually serve it.
styles: array of strings
default: []
An array of URLs that are inserted as link tags into the page header.
If the style is a relative URL, you must also register middleware to actually serve it.
Client
createHistory: function
default: history.createBrowserHistory
A function that is called to control navigation and save history for the app. The return value is passed directly to react-router as-is. The default value creates a history that uses the HTML5 history API.