Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hosseinkarami/react-starter-kit
React Starter Kit - Fiercely quick front-end boilerplate and workflows, React.js, Babel, PostCSS, Webpack
https://github.com/hosseinkarami/react-starter-kit
babel react reactjs webpack
Last synced: about 1 month ago
JSON representation
React Starter Kit - Fiercely quick front-end boilerplate and workflows, React.js, Babel, PostCSS, Webpack
- Host: GitHub
- URL: https://github.com/hosseinkarami/react-starter-kit
- Owner: HosseinKarami
- Created: 2017-07-17T09:29:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T20:20:05.000Z (about 2 years ago)
- Last Synced: 2024-04-15T08:06:18.694Z (8 months ago)
- Topics: babel, react, reactjs, webpack
- Language: CSS
- Homepage: https://hosseinkarami.github.io/React-Starter-Kit/
- Size: 958 KB
- Stars: 59
- Watchers: 4
- Forks: 21
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Starter Kit
### Install
```
yarn install
```
##### Command Setup
In the project directory, you can run:
```
yarn start or yarn build
```
Runs the app in the development mode.
Open http://localhost:9000 to view it in the browser.The page will reload if you make edits.
```
yarn build:prod
```
Builds the app for production to the app folder.
It correctly bundles React in production mode and optimizes the build for the best performance.The build is minified.
Your app is ready to be deployed!See the section about [**deployment**](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#deployment) for more information.
### Dynamic copyright/project bannersThe package.json includes the dependencies for the project as well as information about the project. Entries here will be dynamically appended to the top of generated `.css` and` .js` files, by default it ships with FastShell's banner:
```
/*!
* +-----------------------------+
* ReactStarterKit *
* ReactJs - React Starter Kit *
* @author Hossein Karami *
* https://hosseinkarami.com *
* Copyright 2017 MIT licensed. *
* +-----------------------------+
*/
```
#### Scaffolding
```
ReactStarterKit
├── README.md
├── node_modules
├── webpack.config.js
├── postcss.config.js
├── package.json
├── .gitignore
├── app
│ ├── assets
│ │ ├── css
│ │ ├── img
│ │ └── js
│ ├── favicon.ico
│ └── index.html
│
└── src
└── app
│ ├── components
│ └── utils
└── scss
│ ├── mixins
│ ├── modules
│ ├── partials
│ ├── vendor
│ └── style.scss
└── index.js
└── favicon.ico
```
## License
**The MIT License (MIT)**Copyright © 2017 Hossein Karami
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.