https://github.com/andrewngu/ui-scaffold
https://github.com/andrewngu/ui-scaffold
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/andrewngu/ui-scaffold
- Owner: andrewngu
- Created: 2016-04-11T19:58:17.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T17:53:54.000Z (over 2 years ago)
- Last Synced: 2025-03-31T08:39:05.483Z (about 2 months ago)
- Language: JavaScript
- Size: 3.56 MB
- Stars: 12
- Watchers: 2
- Forks: 1
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ui-scaffold
This repo contains everything you need to start a project with React, Redux and SASS. The build system uses Webpack, tests are run with Jest, while Babel is used to transpile ES6 / ES7 to cross browser friendly Javascript.
## To run it locally
1. `$ npm install`
2. `$ npm run start`
3. visit `http://localhost:8080`## Testing
1. For command line tests, `$ npm run test`## Linting
1. To run the linter, `$ npm run lint`## Reference
1. [Webpack](https://webpack.github.io/docs)
2. [React](https://facebook.github.io/react/docs/getting-started.html)
3. [Redux](http://redux.js.org/index.html)
4. [SASS](http://sass-lang.com/documentation/file.SASS_REFERENCE.html)
5. [Jest](https://facebook.github.io/jest/)
6. [ES6](https://github.com/lukehoban/es6features)