Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wangpin34/react-sass-webpack-on-gulp
demo of react,sass,webpack work on gulp
https://github.com/wangpin34/react-sass-webpack-on-gulp
Last synced: 5 days ago
JSON representation
demo of react,sass,webpack work on gulp
- Host: GitHub
- URL: https://github.com/wangpin34/react-sass-webpack-on-gulp
- Owner: wangpin34
- Created: 2015-12-14T09:11:37.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-16T03:17:05.000Z (almost 9 years ago)
- Last Synced: 2023-03-03T16:42:30.141Z (over 1 year ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-sass-webpack-on-gulp
react,sass,webpack work on gulpThis is a demo or start kit for development based on react and sass. It is well configured so that you can work from this right now.
## Prepare
Install all dependencies
```
npm install
```
If you meet errors when install browser-sync, try this
```
npm config set msvs_version 2012 -g
```
solution comes from [here](http://stackoverflow.com/questions/14278417/cannot-install-node-modules-that-require-compilation-on-windows-7-x64-vs2012)
## Files in app
Directory ***app*** has two sub directories, one is src which contains jsx,scss files. And another one is build which contains the processed files.## Start the live reload server
```
npm run-script build
```
This will start a server, and every time you changed the code in src, the home page will be reloaded.