1.0.0 • Published 9 years ago
react-skeleton-kit v1.0.0
REACT STARTER KIT
Webapp React/Redux/Webpack/hot-loader
Installation
install dependancies
$ npm iRun application locally
$ npm startThen go to http://localhost:8080/
Development
Run tests
$ npm test
$ npm run watch:testRun cover
$ npm run coverRun the local server for styleguide
$ npm run styleguide-serverRun build for the styleguide
$ npm run styleguide-buildProduction
Publish a release
$ npm run publishRun build production
$ npm run buildArchitecture
├── /build/                     # The folder for compiled outputs
├── ├── /bundle.dev.js          # The bundle unminified
├── ├── /bundle.prod.js         # The bundle minified for the prod env
├── ├── /index.html             # The page html where the app is render
├── /src/                       # Sources
│   ├── /actions/               # Action creators for redux
│   ├── /components/            # Components disconnected from the redux store
│   │   ├── /Component/         # Component structure
│   │       ├── /__tests__/     # Tests using Mocha
│   │       ├── /index.css      # CSS for the component
│   │       ├── /index.js       # React Component
│   ├── /config/                # Project config
│   ├── /containers/            # Components connected to the redux store
│   ├── /middlewares/           # Redux middlewares
│   ├── /reducers/              # Redux reducers
│   ├── /index.js               # Entry point of the application
│   ├── /router.js              # Nested routes for react router
│   ├── /store.js               # Redux sore configuration
├── webpack.config.js           # Configurations for client-side and server-side bundles
└── package.json                # The list of libraries and utilitiesChangelog
Contributing
Stack
1.0.0
9 years ago