https://github.com/andrewngu/weather
https://github.com/andrewngu/weather
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andrewngu/weather
- Owner: andrewngu
- Created: 2020-09-10T21:26:25.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-10T21:31:22.000Z (over 4 years ago)
- Last Synced: 2025-02-08T08:11:39.989Z (3 months ago)
- Language: JavaScript
- Size: 184 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
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:8088`## 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)