Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/as-abhinav/uibootcamp7
UI Bootcamp - Specifically for ReactJs
https://github.com/as-abhinav/uibootcamp7
Last synced: 7 days ago
JSON representation
UI Bootcamp - Specifically for ReactJs
- Host: GitHub
- URL: https://github.com/as-abhinav/uibootcamp7
- Owner: as-abhinav
- Created: 2016-11-03T10:54:30.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-22T09:35:32.000Z (almost 7 years ago)
- Last Synced: 2024-08-02T19:38:49.415Z (3 months ago)
- Language: CSS
- Size: 28.5 MB
- Stars: 2
- Watchers: 6
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# UI Bootcamp
## Aim
Create a Tweet deck clone [like this](https://tweetdeck.twitter.com) while going through basic concepts of building single page applications### Tech Stack
###### Build tool:
* [Brunch](http://brunch.io/)
###### Frameworks and libraries:
* [Redux](http://redux.js.org/)
* [React](https://facebook.github.io/react/)
* [Bootstrap](http://getbootstrap.com/)###### Test Utilities
* [Mocha](http://mochajs.org/)
* [Chai](http://chaijs.com/)
* [Enzyme](http://airbnb.io/enzyme/)### Getting started
* Install (if you don't have them):
* [Node.js](http://nodejs.org): `brew install node` on OS X
* [Brunch](http://brunch.io): `npm install -g brunch`
* `cd` into this repo and Brunch plugins and app dependencies: `npm install`
* Run:
* `npm run start` — watches the project with continuous rebuild. This will also launch HTTP server with [pushState](https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Manipulating_the_browser_history).
* `npm run prod` — builds minified project for production
* Learn:
* `public/` dir is fully auto-generated and served by HTTP server. Write your code in `app/` dir.
* Place static files you want to be copied from `app/assets/` to `public/`.## Running the Backend service
In order to run the Mock twitter backend service, please refer to [this page](https://github.com/ashishpundalik/TwitterBackend/blob/master/README.md)