Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/htdangkhoa/express-react-boilerplate
(Deprecated) πππ This is a tool that helps programmers create Express & React projects easily base on react-cool-starter.
https://github.com/htdangkhoa/express-react-boilerplate
axios babel boilerplate code-splitting es6 eslint express flowtype jest mongodb npm-package prettier react react-router redux storybook template unit-testing universal webpack
Last synced: 7 days ago
JSON representation
(Deprecated) πππ This is a tool that helps programmers create Express & React projects easily base on react-cool-starter.
- Host: GitHub
- URL: https://github.com/htdangkhoa/express-react-boilerplate
- Owner: htdangkhoa
- License: mit
- Archived: true
- Created: 2019-10-21T11:00:19.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-11T14:42:00.000Z (about 3 years ago)
- Last Synced: 2024-04-13T02:15:04.614Z (7 months ago)
- Topics: axios, babel, boilerplate, code-splitting, es6, eslint, express, flowtype, jest, mongodb, npm-package, prettier, react, react-router, redux, storybook, template, unit-testing, universal, webpack
- Language: JavaScript
- Homepage: https://github.com/htdangkhoa/react-ssr-starter
- Size: 7.6 MB
- Stars: 43
- Watchers: 5
- Forks: 15
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Funding: .github/funding.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-react-components - express-react-boilerplate - A tool that helps programmers create Express & React projects easily base on react-cool-starter. (Code Design / Boilerplate)
README
erb
π₯ π₯ π₯ Express react boilerplate π₯ π₯ π₯
## Features
- Server side [(Express)](https://expressjs.com).
- NoSQL database [(MongoDB)](mongodb.com).
- Client side [(React)](https://reactjs.org).
- Universal routing [(react-router)](https://github.com/ReactTraining/react-router).
- State management [(Redux)](https://redux.js.org).
- Redux debugging tools [(redux-devtools)](https://github.com/reduxjs/redux-devtools).
- Tweak React components in real time [(react-hot-loader)](https://github.com/gaearon/react-hot-loader).
- SEO [(react-helmet)](https://github.com/nfl/react-helmet).
- The recommended Code Splitting library for React [(loadable-components)](https://github.com/gregberge/loadable-components).
- Progressive web app [(offline-plugin)](https://github.com/NekR/offline-plugin).
- Promise based HTTP client for the browser and NodeJS [(axios)](https://github.com/axios/axios).
- Internationalization [(i18next)](https://www.i18next.com/) & [(react-i18next)](https://github.com/i18next/react-i18next).
- A tool for transforming CSS with JavaScript [(PostCSS)](https://postcss.org/).
- PostCSS plugin to parse CSS and add vendor prefixes to CSS rules using values from Can I Use. It is recommended by Google and used in Twitter and Alibaba [(autoprefixer)](https://github.com/postcss/autoprefixer).
- Compiles CSS Modules in runtime [(css-modules-require-hook)](https://github.com/css-modules/css-modules-require-hook).
- Allows files required by node that match a given set of extensions to be returned as either a data URI, or a custom filename [(asset-require-hook)](https://github.com/aribouius/asset-require-hook).
- Developing UI components [(Storybook)](https://storybook.js.org/).
- Light & Dark theme.
- Data fetching from server-side.
- Compressing images with imagemin [(imagemin-webpack-plugin)](https://github.com/Klathmon/imagemin-webpack-plugin).
- Unit testing [(Jest)](https://github.com/facebook/jest).
- ES6.
- The optional chaining operator provides a way to simplify accessing values through connected objects when it's possible that a reference or function may be undefined or null [(@babel/plugin-proposal-optional-chaining)](https://babeljs.io/docs/en/babel-plugin-proposal-optional-chaining).
- Type checker for javascript [(Flow)](https://flow.org/).
- Find and fix problems in your javascript code [(ESlint)](https://eslint.org/).
- Code formatter [(Prettier)](https://prettier.io/).
- Automate your workflow from idea to production [(Github Actions)](https://github.com/features/actions).
- VSCode debugging.## Requirements
- [Node](https://nodejs.org/en/) >= 10.13.0
## Structure
```
.
βββ public # Express server static path
β βββ assets # All favicon resources
β βββ locales # All of i18n resources
β βββ robots.txt # A robots.txt file tells search engine crawlers which pages or files the crawler can or can't request from your site.
βββ src # App source code
β βββ api # All of restful API
β βββ client # Client scope
β β βββ app # App root component
β β βββ assets # Assets (e.g. images, fonts etc.)
β β βββ components # Reusable components
β β βββ pages # Page components
β β βββ stories # UI components with Storybook
β β βββ themes # App-wide style
β β βββ vendor # 3rd libraries for client
β β βββ index.js # App bootstrap and rendering (webpack entry)
β βββ middlewares # All of express middleware
β βββ model # Data transfer object
β βββ mongo # MongoDB configuration
β βββ secure # All of security (e.g passport configuration, jsonwebtoken etc.)
β βββ store # Store configuration for both client and server side
β βββ tools # Project related configurations
β β βββ jest # Jest configurations
β β βββ webpack # Webpack configurations
β β βββ hooks.js # Assets require hooks
β β βββ postcss.config.js # PostCSS configuration
β βββ types # All of type for flow
β βββ utils # App-wide utils
β βββ config.js # Configuration entry point loaded from .env file
β βββ i18n.js # I18next configuration
β βββ index.js # App entry point
β βββ routes.js # Routes configuration for both client and server side
β βββ server.js # Express server
βββ .babelrc # Babel configuration.
βββ .env-cmdrc.json # All of environments configuration.
βββ .eslintrc.json # Eslint configuration.
βββ .flowconfig # Flow type configuration.
βββ .prettierrc.json # Prettier configuration.
```## Installation
```bash
$ yarn global add express-react-boilerplate
# or (sudo) npm install -g express-react-boilerplate
```## Getting Started
**1. Usage:**
```bash
$ erb-gen --helpUsage: erb-gen [options]
Options:
-v, --version output the version number
-d, --dir project's directory. (default: ".")
-n, --name project's name. (default: "express-react-boilerplate")
-h, --help output usage informationExamples:
$ erb-gen
$ erb-gen --name example
```**2. Install dependencies:**
```bash
$ cd$ yarn
# or npm install
```**3. Run it:**
```bash
$ yarn dev
# or npm run dev
```## Build
```bash
$ yarn build
# or npm run build
```---
> **NOTE**: You can change environment variables in `.env-cmdrc.json` file.
## Scripts
| Script | Description |
| ------------- | ------------------------------------------------------------------------------------- |
| dev | Start the development server. |
| dev `--serve` | Start the development server and open browser. |
| start | Start the production server. |
| build | Remove the previous bundled files and bundle it (include client & server) to `dist/`. |
| wp | Bundle client to `dist/`. |
| analyze | Visualize the contents of all your bundles. |
| storybook | Start the storybook server. |
| test | Run testing. |
| eslint | Find problems in your JavaScript code. |## Enable/Disable offline
- In `src/tools/webpack/webpack.config.prod.js`:
```js
if (isDev) {
...
} else {
plugins = [
...,
// Comment this plugin if you want to disable offline.
new OfflinePlugin({
autoUpdate: true,
appShell: '/',
relativePaths: false,
updateStrategy: 'all',
externals: ['/'],
})
]
}
```- At the end of `src/client/index.js`:
```js
if (!__DEV__) {
require('offline-plugin/runtime').install(); // Comment this line if you want to disable offline.
}
```## Supported Browsers
By default, the generated project supports all modern browsers. Support for Internet Explorer 9, 10, and 11 requires polyfills. For a set of polyfills to support older browsers, use [react-app-polyfill](https://github.com/facebook/create-react-app/tree/master/packages/react-app-polyfill).
```bash
$ yarn add react-app-polyfill
# or npm install --save react-app-polyfill
```You can import the entry point for the minimal version you intend to support to ensure that the minimum language features are present that are required to use in your project. For example, if you import the IE9 entry point, this will include IE10 and IE11 support.
### **Internet Explorer 9**
```js
// This must be the first line in /src/client/app/index.js
import 'react-app-polyfill/ie9';
import 'react-app-polyfill/stable';// ...
```### **Internet Explorer 11**
```js
// This must be the first line in /src/client/app/index.js
import 'react-app-polyfill/ie11';
import 'react-app-polyfill/stable';// ...
```## CSS variables
By default, the generated project supports all modern browsers. Support for Internet Explorer 9, 10, and 11 requires polyfills. For a set of polyfills to support older browsers, use [css-vars-ponyfill](https://github.com/jhildenbiddle/css-vars-ponyfill).
```js
// In /src/client/vendor/index.js
import cssVars 'css-vars-ponyfill';
// ... your css/scss files.
cssVars({
silent: !__DEV__,
..., // https://jhildenbiddle.github.io/css-vars-ponyfill/#/?id=options
});
```## Type Checking For Editor
- [Visual Studio Code](https://flow.org/en/docs/editors/vscode/)
- [Atom](https://flow.org/en/docs/editors/atom/)
- [Sublime Text](https://flow.org/en/docs/editors/sublime-text/)
- [Etc.](https://flow.org/en/docs/editors/)## Contributors
- [htdangkhoa](https://github.com/htdangkhoa)
## Special Thanks
- [(react-cool-starter) - wellyshen](https://github.com/wellyshen/react-cool-starter)
## License
MIT License
Copyright (c) 2019 Huα»³nh TrαΊ§n ΔΔng Khoa
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.