https://github.com/imcuttle/react-chat
react and webpack demo
https://github.com/imcuttle/react-chat
Last synced: about 1 year ago
JSON representation
react and webpack demo
- Host: GitHub
- URL: https://github.com/imcuttle/react-chat
- Owner: imcuttle
- Created: 2016-09-30T09:46:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-01-07T15:02:07.000Z (over 4 years ago)
- Last Synced: 2025-03-23T02:34:04.635Z (about 1 year ago)
- Language: JavaScript
- Size: 983 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React-Chat
- See

- Get Start
```sh
# dev mode
npm install
npm run dev
# production
npm install -g webpack
npm run build
open build/index.html
```
- Directory Tree
```sh
react-chat/
├── app/ # dev files about react.
│ ├── common/
│ ├── component/
│ │ ├── App.js
│ │ └── Message.js
│ ├── css/
│ │ ├── base.less
│ │ └── mixin.less
│ └── main.js
├── build/ # built by webpack from app
│ ├── css/
│ │ ├── font-awesome.css
│ │ ├── font-awesome.css.map
│ │ └── font-awesome.min.css
│ ├── fonts/
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ ├── fontawesome-webfont.woff2
│ │ └── FontAwesome.otf
│ ├── index.html
│ └── main.js
├── index.js # web-dev-server run
├── npm-debug.log
├── package.json
├── README.md
└── webpack.config.js
7 directories, 21 files.
```