An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# React-Chat

- See

![img](./chat-ui.png)

- 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.
```