https://github.com/sanishmaharjan/reactwebapp
Sample react web application (NOT server side)
https://github.com/sanishmaharjan/reactwebapp
Last synced: 3 months ago
JSON representation
Sample react web application (NOT server side)
- Host: GitHub
- URL: https://github.com/sanishmaharjan/reactwebapp
- Owner: sanishmaharjan
- Created: 2017-12-03T10:41:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-06-19T09:02:10.000Z (almost 2 years ago)
- Last Synced: 2025-01-08T21:59:48.247Z (5 months ago)
- Language: JavaScript
- Size: 839 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Simple React web application
> This is sample reactJs application for beginner..### Demo Url
- https://mjsanish-webapp.herokuapp.com/#/### Travis CI
- https://travis-ci.org/sanishmaharjan/reactWebApp## Development
#### Local Setup Instructions
1. Clone repository
```bash
$ git clone [email protected]:sanishmaharjan/reactWebApp.git
```2. Move into the owa directory
```bash
$ cd reactWebApp
```3. Install yarn if not installed in your system
```bash
$ npm install --g yarn
```4. Install the dependencies
```bash
$ yarn install
```5. Build & compile code
```bash
$ yarn webpack
$ yarn build-webpack #webpack with Compress for production
```
6. Run node server
```
$ yarn dev
$ yarn start #webpack and run node server
```7. [Browse Application](http://localhost:8080)
5. For Testing
```bash
$ yarn test
$ yarn test-watch #if you want run test in watch mode
$ yarn test-coverage #view test coverage
```