https://github.com/wichopy/chatty-app
chatting app using react and web sockets
https://github.com/wichopy/chatty-app
Last synced: over 1 year ago
JSON representation
chatting app using react and web sockets
- Host: GitHub
- URL: https://github.com/wichopy/chatty-app
- Owner: wichopy
- License: mit
- Created: 2017-03-06T19:29:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-13T02:19:22.000Z (over 9 years ago)
- Last Synced: 2025-01-22T01:47:08.580Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 278 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

React Boilerplate
=====================
A minimal and light dev environment for ReactJS.
### Usage
Clone the boilerplate and create your own git repo.
```
git clone git@github.com:lighthouse-labs/react-simple-boilerplate.git
git remote rm origin
git remote add origin [YOUR NEW REPOSITORY]
# Manually update your package.json file
```
Install the dependencies and start the server.
```
npm install
npm start
open http://localhost:3000
```
### Static Files
You can store static files like images, fonts, etc in the `build` folder.
For example, if you copy a file called my_image.png into the build folder you can access it using `http://localhost:3000/build/my_image.png`.
### Linting
This boilerplate project includes React ESLint configuration.
```
npm run lint
```
### Dependencies
* React
* Webpack
* [babel-loader](https://github.com/babel/babel-loader)
* [webpack-dev-server](https://github.com/webpack/webpack-dev-server)