Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 971 Bytes

File metadata and controls

28 lines (21 loc) · 971 Bytes

Our Main Repository

Getting Started

To start a development server with "live reload", run a single command in the project directory:

npm start

Basic structure

.
├── build/              # Compiled output
├── coverage/           # Test coverage reports
├── node_modules/       # 3rd-party libraries and utilities
├── public/             # Static files such as favicon.ico etc.
├── src/                # Application source code
│   ├── app.js          # Universal (Isomorphic) application entry point
│   ├── index.js        # Client-side rendering, e.g. app(state, actions, view, container)
│   └── server.js       # Server-side rendering, e.g. renderToString(view, state, actions)
├── .env                # Environment variables (optional)
├── package.json        # The list of project dependencies + NPM scripts
└── README.md           # Getting started guide