https://github.com/fizzygalacticus/blank-react-app
A blank template app for getting started with React JS using Gulp, Babel, and Browserify instead of Webpack.
https://github.com/fizzygalacticus/blank-react-app
Last synced: about 2 months ago
JSON representation
A blank template app for getting started with React JS using Gulp, Babel, and Browserify instead of Webpack.
- Host: GitHub
- URL: https://github.com/fizzygalacticus/blank-react-app
- Owner: FizzyGalacticus
- Created: 2017-06-01T18:38:18.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-02-14T01:43:01.000Z (over 7 years ago)
- Last Synced: 2026-03-06T10:11:21.767Z (4 months ago)
- Language: JavaScript
- Size: 664 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blank React App
This is a template project for quickly getting started with writing react with minimal effort. Just clone the repo and go!
## Why?
Because I wanted to learn how the whole transpilation process worked, and what better way to learn than to manually connect the tools to do it?
## Technologies
- Gulp
- Browserify
- Babel
- ESLint
- LiveReactLoad
- Express
## Features
- React
- Redux
- Flow
## Get started
**Clone the repo:**
```sh
git clone https://github.com/FizzyGalacticus/blank-react-app
```
**Go into the directory:**
```sh
cd blank-react-app
```
**Install dependencies:**
```sh
yarn
```
...or if you use _npm_:
```sh
npm install
```
**Start developing:**
By running the following package script, you will start gulp, and it will transpile everything and start listening for changes:
```sh
yarn start
```
You can view your progress by visiting the url `http://localhost:3001`
Changes made to a component _should_ automatically trigger a reload in the page.
**Build for production:**
To build a production version of your app, simply run the build package script:
```sh
yarn build
```
For both development and production, all output is stored in a `docs` directory in the root of the project.
## Known issues
I have to use a [third party](metro-babel7-plugin-react-transform) react transform library, and to use it I have a `postinstall` script to copy it to where it needs to go. If you add/remove/etc any packages with `yarn` or `npm`, attempting to build the project will fail initially and automatically fix things. You'll just have to re-run your build command.