├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json └── public ├── bg.jpg ├── index.html ├── main.js └── style.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvvvv/simple-web-chat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.bak -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvvvv/simple-web-chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvvvv/simple-web-chat/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvvvv/simple-web-chat/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvvvv/simple-web-chat/HEAD/package.json -------------------------------------------------------------------------------- /public/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvvvv/simple-web-chat/HEAD/public/bg.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvvvv/simple-web-chat/HEAD/public/index.html -------------------------------------------------------------------------------- /public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvvvv/simple-web-chat/HEAD/public/main.js -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvvvv/simple-web-chat/HEAD/public/style.css --------------------------------------------------------------------------------