All Projects → hung-phan → Koa React Isomorphic

hung-phan / Koa React Isomorphic

Licence: mit
Boilerplate for Koa & React

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Koa React Isomorphic

React App
Create React App with server-side code support
Stars: ✭ 614 (+379.69%)
Mutual labels:  relay, webpack, boilerplate, ssr
React Starter Kit
React Starter Kit — front-end starter kit using React, Relay, GraphQL, and JAM stack architecture
Stars: ✭ 21,060 (+16353.13%)
Mutual labels:  webpack, boilerplate, ssr, relay
Koa React Universal
lightweight React-Koa2 universal boilerplate, only what is essential
Stars: ✭ 112 (-12.5%)
Mutual labels:  koa, boilerplate, ssr
React Firebase Starter
Boilerplate (seed) project for creating web apps with React.js, GraphQL.js and Relay
Stars: ✭ 4,366 (+3310.94%)
Mutual labels:  relay, boilerplate, ssr
Rpg Boilerplate
Relay (React), Postgres, and Graphile (GraphQL): A Modern Frontend and API Boilerplate
Stars: ✭ 62 (-51.56%)
Mutual labels:  relay, webpack, ssr
React Lego
React-lego : incrementally add more cool stuff to your react app
Stars: ✭ 417 (+225.78%)
Mutual labels:  webpack, koa, ssr
Create Graphql
Command-line utility to build production-ready servers with GraphQL.
Stars: ✭ 441 (+244.53%)
Mutual labels:  relay, koa, boilerplate
Suicrux
🚀 Ultimate universal starter with lazy-loading, SSR and i18n. [not maintained]
Stars: ✭ 958 (+648.44%)
Mutual labels:  webpack, boilerplate, ssr
React Redux Styled Hot Universal
react boilerplate used best practices and focus on performance
Stars: ✭ 147 (+14.84%)
Mutual labels:  webpack, immutablejs, boilerplate
Mern
🎉 This is boilerplate for MERN stack with integrations like Redux and SSR 🎉
Stars: ✭ 77 (-39.84%)
Mutual labels:  webpack, boilerplate, ssr
Starter Lapis
Cutting edge starter kit
Stars: ✭ 72 (-43.75%)
Mutual labels:  webpack, immutablejs, boilerplate
Razzle Material Ui Styled Example
Razzle Material-UI example with Styled Components using Express with compression
Stars: ✭ 117 (-8.59%)
Mutual labels:  webpack, boilerplate, ssr
Rockpack
Rockpack is a simple solution for creating React Application with Server Side Rendering, bundling, linting, testing within 5 minutes
Stars: ✭ 265 (+107.03%)
Mutual labels:  webpack, boilerplate, ssr
React Core Boilerplate
Powerful ASP.NET Core 3 templates with React, true server-side rendering and Docker support
Stars: ✭ 169 (+32.03%)
Mutual labels:  webpack, boilerplate, ssr
Vue Webpack Config
Koa2、Webpack、Vue、React、Node
Stars: ✭ 151 (+17.97%)
Mutual labels:  webpack, koa, ssr
Koa Vue Fullstack
A lightweight boilerplate for a universal webapp based on koa, mongodb, node, vue, and webpack
Stars: ✭ 126 (-1.56%)
Mutual labels:  webpack, koa, boilerplate
Js Stack Boilerplate
Final boilerplate code of the JavaScript Stack from Scratch tutorial –
Stars: ✭ 145 (+13.28%)
Mutual labels:  webpack, immutablejs, boilerplate
React Universal Boiler
A bold way to begin your next great universal React application. Uses Webpack 3, React 16, Redux, and more for a great developer experience.
Stars: ✭ 65 (-49.22%)
Mutual labels:  webpack, boilerplate, ssr
Award
⚙基于react的服务端渲染框架
Stars: ✭ 91 (-28.91%)
Mutual labels:  webpack, koa, ssr
Oh My Fullstack
🚀 Full stack web application skeleton (Next.js, Redux, RxJS, Immutable, Express)
Stars: ✭ 99 (-22.66%)
Mutual labels:  immutablejs, boilerplate, ssr

React and Koa boilerplate (deprecated. New project available at https://github.com/hung-phan/micro-nextjs)

build status codecov Dependency Status devDependency Status

The idea of this repository is to implement all new concepts and libraries which work great for React.js.

Requirement

Features

Explanation

Templates

Templates are written in marko.js with predefined template helpers. To see its usage, please refer to layout/application.marko.

Server side rendering

I use webpack-isomorphic-tools to support loading assets in the server side. You can see the configuration file under config folder.

Fetch data

  • For redux, data is fetched using redial hooks on the server side.

Takes a look at templates/todos, I will have sth like:

  createRedialEnhancer({
    [FETCH_DATA_HOOK]: ({ store }) => store.dispatch(fetchTodos()),
    [UPDATE_HEADER_HOOK]: ({ store }) => store.dispatch(updateLink([
      // window.javascriptAssets will be injected to do preload link for optimizing route
      { rel: 'preload', href: window.javascriptAssets['static-page'], as: 'script' },
    ])),
  })
  • For relay, data is fetched using isomorphic-relay-router on the server side.

Default require for node

The default require node statement has been modified by webpack-isomorphic-tools, so I remap it with nodeRequire under global. For example, you can use it like as below:

const { ROOT, PUBLIC } = global.nodeRequire('./config/path-helper');

Note: nodeRequire will resolve the path from project root directory.

Preload assets via redial

To be able to support for asynchronous chunks loading using <link rel='preload' ... />, I returned the javascript assets map for all the routes to the client via window.javascriptAssets.

You can use this to inject assets for the next page to improve performance. This is what I am trying to achieve preload-webpack-plugin.

This will map the hook with the current component and trigger it (Note: This will only be applied to root component).

Async react components

react-loadable

Idea to structure redux application

For now, the best way is to place all logic in the same place with components to make it less painful when scaling the application. Current structure is the combination of ideas from organizing-redux and ducks-modular-redux. Briefly, I will have our reducer, action-types, and actions in the same place with featured components.

alt text

Localize selectors

Some great ideas from scoped-selectors-for-redux-modules. You can create a localized scope for selector using globalizeSelectors.

export const mountPoint = 'todos';

export const selectors = globalizeSelectors({
  getTodos: identity, // it will also work with reselect library
}, mountPoint);

Then in main reducer, you can have sth like this, which helps reduce the coupling with React view

/* @flow */
import { combineReducers } from 'redux';
import todosReducer, { mountPoint as todosMountPoint } from './components/todos/logicBundle';
import routingReducer, { mountPoint as routingMountPoint } from './components/routing/logicBundle';
import helmetReducer, { mountPoint as helmetMountPoint } from './components/helmet/logicBundle';

export default combineReducers({
  [todosMountPoint]: todosReducer,
  [routingMountPoint]: routingReducer,
  [helmetMountPoint]: helmetReducer,
});

Sample for logicBundle:

export const mountPoint = "todos";

export const selectors = globalizeSelectors(
  {
    getTodos: identity
  },
  mountPoint
);

export const ADD_TODO = "todos/ADD_TODO";
export const REMOVE_TODO = "todos/REMOVE_TODO";
export const COMPLETE_TODO = "todos/COMPLETE_TODO";
export const SET_TODOS = "todos/SET_TODOS";

export const addTodo: AddTodoActionType = createAction(ADD_TODO);
export const removeTodo: RemoveTodoActionType = createAction(REMOVE_TODO);
export const completeTodo: CompleteTodoActionType = createAction(COMPLETE_TODO);
export const setTodos: SetTodosActionType = createAction(SET_TODOS);
export const fetchTodos = () =>
  (dispatch: Function): Promise<TodoType[]> =>
    fetch(getUrl("/api/v1/todos"))
      .then(res => res.json())
      .then((res: TodoType[]) => dispatch(setTodos(res)));

export default handleActions(
  {
    [ADD_TODO]: (state, { payload: text }) => update(state, {
      $push: [{ text, complete: false }]
    }),
    [REMOVE_TODO]: (state, { payload: index }) => update(state, {
      $splice: [[index, 1]]
    }),
    [COMPLETE_TODO]: (state, { payload: index }) => update(state, {
      $splice: [
        [index, 1],
        [index, 0, { ...state[index], complete: !state[index].complete }]
      ]
    }),
    [SET_TODOS]: (state, { payload: todos }) => todos
  },
  []
);

Upcoming

  • Phusion Passenger server with Nginx

Development

$ git clone [email protected]:hung-phan/koa-react-isomorphic.git
$ cd koa-react-isomorphic
$ yarn install

Hot reload

$ yarn run watch
$ yarn run dev

With server rendering - encourage for testing only

$ SERVER_RENDERING=true yarn run watch
$ yarn run dev

Enable flowtype in development

$ yarn run flow-watch
$ yarn run flow-stop # to terminate the server

You need to add annotation to the file to enable flowtype (// @flow)

Test

$ yarn test

Debug

$ yarn run watch
$ yarn run debug

Production

Start production server

$ yarn run build
$ SECRET_KEY=your_env_key yarn start

Docker container

$ docker-compose build
$ docker-compose up

Access http://localhost:3000 to see the application

QA

Feel free to open an issue on the repo.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].