https://github.com/ilkeryilmaz/bilyeli
🛴Bilyeli is a minimal boilerplate for modern React app builds. Always up-to-date, always simple.
https://github.com/ilkeryilmaz/bilyeli
boilerplate react react-boilerplate react-starter webpack
Last synced: 7 months ago
JSON representation
🛴Bilyeli is a minimal boilerplate for modern React app builds. Always up-to-date, always simple.
- Host: GitHub
- URL: https://github.com/ilkeryilmaz/bilyeli
- Owner: ilkeryilmaz
- License: mit
- Created: 2017-08-12T10:49:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T19:14:10.000Z (about 3 years ago)
- Last Synced: 2025-06-02T13:44:30.694Z (8 months ago)
- Topics: boilerplate, react, react-boilerplate, react-starter, webpack
- Language: JavaScript
- Homepage: https://bilyeli.netlify.com/
- Size: 3.6 MB
- Stars: 22
- Watchers: 2
- Forks: 1
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Bilyeli
Bilyeli is a minimal boilerplate for modern React app builds. Always up-to-date, always simple.
## Features
- [x] React
- [x] React router
- [x] Redux thunk
- [x] Webpack 4 (development and production config)
- [x] Webpack dashboard
- [x] Hot module replacement
- [x] Babel
- [x] Css modules with scss
- [x] File loader (png,gif,jpg,svg)
- [x] Airbnb eslint
- [x] Prettier
- [x] Storybook
- [x] Jest with enzyme
- [x] Preview production
## Setup
### Install
```
$ npm install
```
or
```
$ yarn install
```
### Running in dev mode
```
$ npm start
```
#### Running it with [webpack dashboard](https://github.com/FormidableLabs/webpack-dashboard)
```
$ npm run dev
```
### Development with storybook
Files with the `**.stories.js` extension are run.
```
$ npm run storybook
```
### Build (production)
Build will be placed in the `build` folder.
```
$ npm run build
```
### Build storybook (production)
Build will be placed in the `.out-storybook` folder.
```
$ npm run build:storybook
```
### Production preview
Preview the `build` folder.
```
$ npm run preview
```
### Start test
Files with the `**.test.js` extension are run.
```
$ npm run test
```