-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 782 Bytes
/
Copy pathpackage.json
File metadata and controls
17 lines (17 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "simplistic-chat",
"version": "1.0.0",
"description": "One of the most simplistic multi-person chats. This chat uses a JavaScript frontend and a Node.js backend. (NOTE: This chat is currently in BETA testing. Expect bugs!) ### Steps to run: #### Github Codespaces 1. Create a new codespace on main. 2. Run `npm install socket.io` 3. Run `node server.js` and click **Make Public** on the popup. 4. Navigate to the **Ports** tab, right click the link, and click **Open in Browser** to launch the chat.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.21.2",
"socket.io": "^4.8.1"
}
}