An open API service indexing awesome lists of open source software.

https://github.com/geoffdavis92/my-react-boilerplate

React App boilerplate made with Create-React-App; features Yarn, React Router, and Flow. Grunt source directory builds HTML, CSS, and data files into the app folder.
https://github.com/geoffdavis92/my-react-boilerplate

create-react-app flowtype grunt react react-router sass yarn

Last synced: 2 months ago
JSON representation

React App boilerplate made with Create-React-App; features Yarn, React Router, and Flow. Grunt source directory builds HTML, CSS, and data files into the app folder.

Awesome Lists containing this project

README

          

# Geoff's React Boilerplate

## Getting Started

---

### Installation

To install, clone or download the repo ([https://github.com/geoffdavis92/my-react-boilerplate.git](https://github.com/geoffdavis92/my-react-boilerplate.git)) and run `$ [yarn,npm] run init`; this creates a brand new git repository in this directory, and installs the dependencies in the wrapping directory as well as the `/app` directory.

Note: this boilerplate uses [Yarn](https://yarnpkg.com) to manage its dependencies.

### Starting Development

`$ yarn run grunt` starts the Grunt `watch` task, which watches any changes to the `/source` directory.

Inside the `/app` directory, running `$ yarn run start` will start the `create-react-app` scripts/Webpack server, which watches any changes to the `src` and `public` directories.

### Creating New Components

The easiest way to create new components is...

---