-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f0ca171
commit 5740b4f
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
# Simple Front-end Starter | ||
# react-minimal | ||
|
||
React with minimal dependencies and tools. | ||
|
||
* Styling with default fonts that look great across operating systems. | ||
|
||
* A development environment with | ||
* Lint (via ESLint with Airbnb style) | ||
* Support for es6 modules and hot reloading (via Parse Bundler) | ||
* Unit tests (via Jest) | ||
* Includes a development environment with: | ||
* Support for es6 modules and hot reloading (via Parcel Bundler) | ||
* Compile to es5 to run across a wide range of browsers (via Babel) | ||
* Unit tests (via Jest) | ||
* Lint (via ESLint Airbnb style) | ||
|
||
* Styling with default fonts that look great across operating systems. | ||
|
||
## Run the starter project | ||
## Run Local Dev Server | ||
|
||
npm install # install dependencies | ||
|
||
npm start | ||
# visit http://localhost:1234 | ||
|
||
## Test it | ||
## Run Tests | ||
|
||
npm test | ||
|
||
## Package it up in dist folder | ||
## Package project up in dist folder for release to server | ||
|
||
npm run build |