blob: edb55994a8296efddb6dce7952c208759ac52188 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# wsChat
A simple IRC-like chat made using nodejs and webSockets
## Running the server
To install dependencies:
```bash
npm install
```
To run:
```bash
node index.js
```
## TODO
- ~~Make commands be in an object instead of a switch statement~~
- ~~/help command~~
- ~~/about command~~
- ~~Config (JSON)~~
- ~~MOTD~~
- ~~Custom commands (plugins)~~
- ~~Auth (optional)~~
- Command class?
## IN PROGRESS
- JSON support (for clients and stuff) (eg getting user data as json)
- JSON events (for clients and stuff)
|