https://github.com/zbicin/simple-chat-client
https://github.com/zbicin/simple-chat-client
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zbicin/simple-chat-client
- Owner: zbicin
- Created: 2018-04-01T17:21:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-25T21:31:49.000Z (about 7 years ago)
- Last Synced: 2024-10-18T13:56:48.987Z (8 months ago)
- Language: TypeScript
- Size: 258 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Chat Client
Example application implementing [Simple Chat Client Core](https://github.com/zbicin/simple-chat-client-core).
## How to use?
Clone the repo and install dependencies:
```
git clone [email protected]:zbicin/simple-chat-client.git
cd simple-chat-client
npm install
```...and run the client:
```
npm start
```By default the app runs on port 3000. If you wish to change it, use either the `--port` argument:
```
npm start -- --port 1234
```or `SIMPLE_CHAT_CLIENT_PORT` environmental variable:
```
export SIMPLE_CHAT_CLIENT_PORT=1234
npm start
```