An open API service indexing awesome lists of open source software.

https://github.com/andrewngu/ui-scaffold


https://github.com/andrewngu/ui-scaffold

Last synced: 16 days ago
JSON representation

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)