├── .env.example ├── .gitignore ├── README.md ├── client ├── .gitignore ├── README.md ├── package.json ├── public │ ├── app.css │ ├── favicon.ico │ └── index.html └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── ChatApp.js │ ├── NameBox.js │ ├── index.css │ └── index.js ├── config.js ├── index.js ├── package.json └── start-client.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/client/public/app.css -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/ChatApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/client/src/ChatApp.js -------------------------------------------------------------------------------- /client/src/NameBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/client/src/NameBox.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/client/src/index.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/package.json -------------------------------------------------------------------------------- /start-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philnash/react-programmable-chat/HEAD/start-client.js --------------------------------------------------------------------------------