npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-chat-js

v0.0.5

Published

client-server chat system : real time communication, administration panel, ban by @IP... (node.js)

Downloads

6

Readme

node-chat-js

A simple file based, real time chat client-server solution in node.js, ready to be deployed in your applications in a single line of code.

Table of content

Intro

node-chat-js is a node.js package to deploy a mono-room chat server that includes :

  • Real time communication based on web sockets
  • Administration panel
  • Ban users by @IP address
  • Manage administrators with login and password
  • Log system

The solution comes with a single page application as the chat room at <your_domain>/chat, note that with the javascript client file you can create a chat where you want.

Deploy

First of all you need the node-chat-js folder in your node_modules.

$ npm install node-chat-js

Then, you can createChatServer.

const app = require('express')();
const server = require('http').createServer(app);
// create a chat server
const nodeChat = require('node-chat-js').createChatServer(app, server);

Now your application has 3 new urls

  • /chat : a single page application which is the chat room.
  • /nc-login : the login page.
  • /nc-admin : the administration panel, you need to auth on /nc-login to get here.

All clients can now chat in real time either at <your_domain>/chat or anywhere in a page configured. see create a chat client in another page

Administration

You can manage your chat server :

  • add new administrators
  • ban @IP addresses
  • talk as an admin

First, you have to be authentified.

Auth

Go to /nc-login and log with a correct user/password to get /nc-admin.

If it's the first time you try to log-in, you will be in setup mode and you'll have to create the first admin.

Then disconnect as asked and log in with correct user/password.

Users are specified in the node-chat-js/users file and can be added in the admin panel, passwords are salted and hashed with bcrypt, see [users].(#users)

Create a chat client in another page

If you want to include the chat elsewhere, you can create a chat client in the HTML page you want. This client will still be related to the /nc-admin panel.

Don't forget to add the node-chat-js-client.js file and the socket.io dependency

<script src="/socket.io/socket.io.js"></script>
<script src="/node-chat-js/js/node-chat-js-client.js"></script>

Note : you already have the socket.io folder since it's a specified dependency of node-chat-js in package.json

Minimum elements :

<div id="ncChatZone"></div> <!-- where messages are appendend -->
<div id="ncClientNumber"></div> <!-- real time number of clients connected -->

<!-- form for your users to chat -->
<form id="ncFormChat">
	<input type="text" id="ncName">
	<input type="text" id="ncMessage">
	<input type="submit">
</form>

You can look at the chat.ejs core content to see how it's done in the /chat app.

        <div class="container">
            <div class="row d-flex flex-column justify-content-center">
		<!-- you need an element with #ncChatZone, it's where all messages are appended -->
                <div id="ncChatZone">
                    <div class="alert div-info text-center">
                        <img src="/node-chat-js/img/user.svg" width=20 height=20 alt="">
			<!-- element #ncClientNumber gets in real time the number of clients connected to the chat -->
                        <span id="ncClientNumber"></span>
                    </div>
                </div>
		<!-- most important part, you need a form with #ncFormChat and an input #ncName, input #ncMessage -->
                <form action="/" method="post" class="row form-group d-flex" id="ncFormChat">
                    <input class="form-control col-md-2" type="text" placeholder="Name" id="ncName" autofocus>
                    <input class="form-control col-md-8" type="text" placeholder="Hi, enter a message..." id="ncMessage">
                    <input class="btn btn-primary col-md-2" type="submit" placeholder="Send">
                </form>
            </div>
        </div>

Files

node-chat-js is based on files and not dependent to any database.

banned-addresses

Always edit this file from /nc-admin Or restart the node server after.

banned-addresses stores all @IP that are banned from the chat server the syntax is the following :

@ip1

@ip2

users

users is a file where all admins are registered with this syntax :

name1 password1

name2 password2

admins must be created from the admin panel and cannot be added directly to this file since passwords are salted and encrypted with bcrypt.

If the users file is empty, the first try to get /nc-login will put you in setup mode and you'll have to set the first admin.

log

type : INFO_CONN -- datetime -- client @IP

type : NEW_MSG -- datetime -- client @IP -- client name -- client message

type : ADMIN_MSG -- datetime -- admin name -- admin message

type : ADMIN_BAN -- datetime -- @IP banned

admin name is auto set by authentication but can be changed by the admin, this is the only case where you can see an admin name that is not registered in the [users] file in your logs.

Functions

If you want to custom the node-chat-js, you need to know the functions and events under the hood :

Client

node-chat-js client IO event listeners

  • updateClientNumber
  • message
  • messageFromAdmin
  • banned
// LISTENERS

// update client number
socket.on('updateClientNumber', (data) => {
    getClientNumber(data.clientNumber);
});

// add message from server to DOM
socket.on('message', (data) => {
    appendMessageToDOM(data.name, data.message, null, data.time);
});

// add message from server (admin) to DOM
socket.on('messageFromAdmin', (data) => {
    appendMessageToDOM(data.name, data.message, 'admin', data.time);
});

// banned from chat
socket.on('banned', (data) => {
    appendMessageToDOM('BAN' , data.message, 'banned', data.time);
});

node-chat-js clients can only emit message

// EMITTER

socket.emit('message', { name : ncName.value, message : ncMessage.value });

Server

node-chat-js server IO event emitters / listeners

  • connection
  • message
  • messageFromAdmin
  • messageForAdmin
  • isAdmin
  • banIp
  • addAdmin
  • disconnect

check index.js file fore more

Made by Nicolas Coutable - 2018