iam-jmismail / react-ssr-boilerplate-1

🚀 React SSR Boilerplate — Node.js + MySQL + Koa2.x + React + React Router4.x + Redux + SSR

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React SSR Boilerplate

React SSR Boilerplate is a github repository that helps anyone create new JavaScript applications. Giving you a technically sound and well tested starting point for your application.

Technology stack

  • React
  • React Router
  • Redux
  • Koa2
  • styled-components

Features

  • SSR
  • module styles
  • Enables building universal SPAs
  • A modern redux architecture
  • Fast server side hot reloading
  • 99% ES-next code-base
  • Hot reloading unit tests in a browser
  • A comprehensive functional and unit test suite
  • A lucid code-base
  • A pretty console output
  • Useful debugging tools

Prerequsits

Node.js.0+、Redis、MySQL

Quick Start

  1. install Node.js

  2. install Redis and MySQL

  3. create postgres database:

    { database: 'server', order: 'utf8mb4_general_ci', owner: 'root', password: '123456', host: '127.0.0.1' }

  4. clone and start this project

    # clone
    git clone git@github.com:zhuowenli/react-ssr-boilerplate.git <directory-name>
    cd <directory-name>
    
    # install deps
    yarn
    
    # create .env
    mv example.env .env
    
    # init database
    yarn db:migrate
    yarn db:seed
    
    # start!
    yarn dev

    With the default .env file, this will start your application in development mode on port 9001. It also provides a configuration for running the debugger with a useful console output.

  5. Open a browser window at localhost:9001.

Commands

Developing

yarn dev

Builds and serves app with hot reloading and debugging support.

Build client-side app

yarn build

Creates bundles and assets into ./src/static directory. Reads .env but always uses production Webpack configuration.

Start the server

Set the NODE_ENV flag to production in your .env file.

yarn global add pm2
yarn start

Expects bundles and assets to exist in the ./src/static directory. Runs the server in production mode.

Unit test development server

yarn test:server

Start a test server using Mocha and Webpack-middleware. Provides a browser based testing environment. Loading tests from within ./src where extension is .test.js.

Unit test single run

yarn test:unit

Runs the test suite in a node environment through mocha, once.

Functional/integration tests run

yarn test:func

Runs functional tests inside ./test/functional directory.

Lint

yarn lint

Reads .eslintrc for linting configurations.

Coverage

yarn coverage
yarn coverage:check

Console

$ yarn console

# insert users table
> models.User.create({name: '卓文理', email: '531840344@qq.com', password: '12345678', passwordConfirmation: '12345678'})

# search users table
> models.User.findOne({ where: { email: '531840344@qq.com' } }).then(user => console.log(user.dataValues))

# insert articles table
> models.Article.create({title: 'Hello world!', content: '这是一条通过console插入的数据', user_id: 1, description: '相关描述', release_at: '2017-09-01 12:00:00'})

Libraries

React SSR Boilerplate uses the following libraries at its core:

Build tools
Server
  • koa - A lightweight server framework.
  • koa-router - Router middleware for koa.
  • socket.io - A node engine for WebSocket communication.
  • redux-via-socket.io - An adapter for sharing redux actions over WebSockets.
  • Sequelize - Sequelize is a promise-based ORM for Node.js v4 and up. It supports the dialects MySQL, MySQL, SQLite and MSSQL and features solid transaction support, relations, read replication and more.
Universal Application
Styling
  • SCSS - A popular CSS preprocessor.
  • PostCSS - CSS transformations with JavaScript.

About

🚀 React SSR Boilerplate — Node.js + MySQL + Koa2.x + React + React Router4.x + Redux + SSR

License:MIT License


Languages

Language:JavaScript 99.3%Language:Shell 0.6%Language:CSS 0.1%