Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/1.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
June Domingo committed Nov 10, 2016
2 parents 9563dfb + c0c38f2 commit 3b3e612
Show file tree
Hide file tree
Showing 4 changed files with 4,668 additions and 17 deletions.
38 changes: 23 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,40 @@
# React Starterkit
> Build project using ReactJS, Redux, Webpack and Babel
> Build web apps using ReactJS, Redux, Webpack and Babel
### Tech
* Redux - Predictable state container for JavaScript apps
* Webpack - A bundler for javascript and friends
* React-Router - A complete routing library for React
* Babel - Compiles ES6 to ES5. Enjoy the new version of JavaScript today
* ES Lint - Lint JS. Reports syntax and style issues
* Npm scripts - Run project with just one command
* [Redux](http://redux.js.org/) - Predictable state container for JavaScript apps
* [Webpack](https://webpack.github.io/) - A bundler for javascript and friends
* [React-Router](https://github.com/ReactTraining/react-router) - A complete routing library for React
* [Babel](https://babeljs.io/) - Compiles ES6 to ES5. Enjoy the new version of JavaScript today
* [ESLint](http://eslint.org/) - Lint JS. Reports syntax and style issues
* NPM scripts - Run project with just one command

### Installation
### Requirements

Requires [Node.js](https://nodejs.org/) v4+ to run.
* [Node.js](https://nodejs.org/) v4+ to run.
* [YARN](https://yarnpkg.com/) - Yarn is a package manager for your code. It allows you to use and share code with other developers from around the world. Yarn does this quickly, securely, and reliably so you don’t ever have to worry.

First, you need to clone the api repo
### Installation

Install Yarn
```sh
$ git clone https://github.com/JuneDomingo/react-starterkit-api.git
$ cd react-starterkit-api
$ npm i
$ npm start
$ npm install yarn -g
```

Clone this repo

```sh
$ git clone https://github.com/JuneDomingo/react-starterkit.git
$ cd react-starterkit
$ npm i
$ yarn install
$ npm start -s
```

Clone the API repo (Optional)

```sh
$ git clone https://github.com/JuneDomingo/react-starterkit-api.git
$ cd react-starterkit-api
$ yarn install
$ npm start
```
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
],
"dependencies": {
"Ionicons": "ionicons#^2.0.1",
"bootstrap": "v4.0.0-alpha.2"
"bootstrap": "v4.0.0-alpha.5"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-starter-kit",
"version": "1.0.1",
"version": "1.0.2",
"description": "Build project using ReactJS, Redux, Webpack and Babel",
"scripts": {
"postinstall": "bower install",
Expand Down
Loading

0 comments on commit 3b3e612

Please sign in to comment.