Skip to content

Commit d0dadea

Browse files
committed
v1.0.0 - 🎉 Releasing 1.0.0! 🎉
1 parent 543de69 commit d0dadea

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Node.JS Chat
22
============
3-
[![GitHub Stars](https://img.shields.io/github/stars/IgorAntun/node-chat.svg)](https://github.com/IgorAntun/node-chat/stargazers) [![GitHub Issues](https://img.shields.io/github/issues/IgorAntun/node-chat.svg)](https://github.com/IgorAntun/node-chat/issues) [![Current Version](https://img.shields.io/badge/version-0.26.7-green.svg)](https://github.com/IgorAntun/node-chat) [![Live Demo](https://img.shields.io/badge/demo-online-green.svg)](https://igorantun.com/chat) " [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/IgorAntun/node-chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
3+
[![GitHub Stars](https://img.shields.io/github/stars/IgorAntun/node-chat.svg)](https://github.com/IgorAntun/node-chat/stargazers) [![GitHub Issues](https://img.shields.io/github/issues/IgorAntun/node-chat.svg)](https://github.com/IgorAntun/node-chat/issues) [![Current Version](https://img.shields.io/badge/version-1.0.0-green.svg)](https://github.com/IgorAntun/node-chat) [![Live Demo](https://img.shields.io/badge/demo-online-green.svg)](https://igorantun.com/chat) " [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/IgorAntun/node-chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
44

55
This is a node.js chat application powered by SockJS and Express that provides the main functions you'd expect from a chat, such as emojis, private messages, an admin system, etc.
66

@@ -32,27 +32,27 @@ You can test a fully working live demo at https://igorantun.com/chat
3232
####There are 3 admin levels:
3333
- **Helper:** Can delete chat messages
3434
- **Moderator:** The above plus the ability to kick and ban users
35-
- **Administrator:** All the above plus send global alerts and promote/demote other users
35+
- **Administrator:** All the above plus send global alerts and promote/demote users
3636

3737
---
3838

3939
## Setup
4040
Clone this repo to your desktop and run `npm install` to install all the dependencies.
4141

42-
You might want to look into `app.js` and `public/js/chat.js` to make some adjustments such as changing the socket url to other than localhost, and set up a SSL certificate to work with it.
42+
You might want to look into `config.json` to make change the port you want to use and set up a SSL certificate.
4343

4444
---
4545

4646
## Usage
4747
After you clone this repo to your desktop, go to its root directory and run `npm install` to install its dependencies.
4848

49-
Once the dependencies are installed, you can run `node main.js` to start the application. You will then be able to access it at http://localhost:3000
49+
Once the dependencies are installed, you can run `npm start` to start the application. You will then be able to access it at localhost:3000
5050

51-
To give yourself administrator permissions on the chat, you will have to type `/op [your-name]` in the app console.
51+
To give yourself administrator permissions on the chat, you will have to type `/role [your-name]` in the app console.
5252

5353
---
5454

5555
## License
5656
>You can check out the full license [here](https://github.com/IgorAntun/node-chat/blob/master/LICENSE.md)
5757
58-
This project is licensed under the terms of the **MIT** license.
58+
This project is licensed under the terms of the **MIT** license.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-chat",
3-
"version": "0.26.7",
3+
"version": "1.0.0",
44
"private": true,
55
"scripts": {
66
"start": "node app.js"

0 commit comments

Comments
 (0)