Skip to content

ilkeryilmaz/bilyeli

Repository files navigation

Bilyeli

Bilyeli is a minimal boilerplate for modern React app builds. Always up-to-date, always simple.

Bilyeli

Features

  • React
  • React router
  • Redux thunk
  • Webpack 4 (development and production config)
  • Webpack dashboard
  • Hot module replacement
  • Babel
  • Css modules with scss
  • File loader (png,gif,jpg,svg)
  • Airbnb eslint
  • Prettier
  • Storybook
  • Jest with enzyme
  • Preview production

Setup

Install

$ npm install

or

$ yarn install

Running in dev mode

$ npm start

Running it with 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