0.0.1 • Published 2 years ago

unichat v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

UniChatJsServer: A server for UniChatJs

UniChatJsServer helps establishing connections between UniChatJS clients. Data is not proxied through the server.

Usage

Run server

Natively

If you don't want to develop anything, just enter few commands below.

  1. Install the package globally:
    $ npm install unichat -g
  2. Run the server:

    $ unichatjs --port 9000 --key unichatjs --path /myapp
    
      Started UniChatJsServer on ::, port: 9000, path: /myapp (v. 0.3.2)
  3. Check it: http://127.0.0.1:9000/myapp It should returns JSON with name, description and website fields.

Docker

Also, you can use Docker image to run a new container:

$ docker run -p 9000:9000 -d unichatjs/unichatjs-server
Kubernetes
$ kubectl run unichatjs-server --image=unichatjs/unichatjs-server --port 9000 --expose -- --port 9000 --path /myapp

Create a custom server:

If you have your own server, you can attach UniChatJsServer.

  1. Install the package:

    # $ cd your-project-path
    
    # with npm
    $ npm install unichat
    
    # with yarn
    $ yarn add unichat
  2. Use UniChatJsServer object to create a new server:

    const { UniChatJsServer } = require('unichat');
    
    const uniChatServer = UniChatJsServer({ port: 9000, path: '/myapp' });
  3. Check it: http://127.0.0.1:9000/myapp It should returns JSON with name, description and website fields.

Connecting to the server from client UniChatJS:

<script>
    const unichat = new UniChat('someid', {
      host: 'localhost',
      port: 9000,
      path: '/myapp'
    });
</script>

Config / CLI options

You can provide config object to UniChatJsServer function or specify options for unichatjs CLI.

CLI optionJS optionDescriptionRequiredDefault
--port, -pportPort to listen (number)Yes
--key, -kkeyConnection key (string). Client must provide it to call API methodsNo"unichatjs"
--pathpathPath (string). The server responds for requests to the root URL + path. E.g. Set the path to /myapp and run server on 9000 port via unichatjs --port 9000 --path /myapp Then open http://127.0.0.1:9000/myapp - you should see a JSON reponse.No"/"
--proxiedproxiedSet true if UniChatJsServer stays behind a reverse proxy (boolean)Nofalse
--expire_timeout, -texpire_timeoutThe amount of time after which a message sent will expire, the sender will then receive a EXPIRE message (milliseconds).No5000
--alive_timeoutalive_timeoutTimeout for broken connection (milliseconds). If the server doesn't receive any data from client (includes pong messages), the client's connection will be destroyed.No60000
--concurrent_limit, -cconcurrent_limitMaximum number of clients' connections to WebSocket server (number)No5000
--sslkeysslkeyPath to SSL key (string)No
--sslcertsslcertPath to SSL certificate (string)No
--allow_discoveryallow_discoveryAllow to use GET /unichats http API method to get an array of ids of all connected clients (boolean)No
generateClientIdA function which generate random client IDs when calling /id API method (() => string)Nouuid/v4

Using HTTPS

Simply pass in PEM-encoded certificate and key.

const fs = require('fs');
const { UniChatJsServer } = require('unichat');

const uniChatServer = UniChatJsServer({
  port: 9000,
  ssl: {
    key: fs.readFileSync('/path/to/your/ssl/key/here.key'),
    cert: fs.readFileSync('/path/to/your/ssl/certificate/here.crt')
  }
});

You can also pass any other SSL options accepted by https.createServer, such as `SNICallback:

const fs = require('fs');
const { UniChatJsServer } = require('unichat');

const uniChatServer = UniChatJsServer({
  port: 9000,
  ssl: {
    SNICallback: (servername, cb) => {
        // your code here ....
    }
  }
});

Running UniChatJsServer behind a reverse proxy

Make sure to set the proxied option, otherwise IP based limiting will fail. The option is passed verbatim to the expressjs trust proxy setting if it is truthy.

const { UniChatJsServer } = require('unichat');

const uniChatServer = UniChatJsServer({
  port: 9000,
  path: '/myapp',
  proxied: true
});

Custom client ID generation

By default, UniChatJsServer uses uuid/v4 npm package to generate random client IDs.

You can set generateClientId option in config to specify a custom function to generate client IDs.

const { UniChatJsServer } = require('unichat');

const customGenerationFunction = () => (Math.random().toString(36) + '0000000000000000000').substr(2, 16);

const uniChatServer = UniChatJsServer({
  port: 9000,
  path: '/myapp',
  generateClientId: customGenerationFunction
});

Open http://127.0.0.1:9000/myapp/unichatjs/id to see a new random id.

Combining with existing express app

const express = require('express');
const { ExpressUniChatServer } = require('unichat');

const app = express();

app.get('/', (req, res, next) => res.send('Hello world!'));

// =======

const server = app.listen(9000);

const uniChatServer = ExpressUniChatServer(server, {
  path: '/myapp'
});

app.use('/unichatjs', uniChatServer);

// == OR ==

const http = require('http');

const server = http.createServer(app);
const uniChatServer = ExpressUniChatServer(server, {
  debug: true,
  path: '/myapp'
});

app.use('/unichatjs', uniChatServer);

server.listen(9000);

// ========

Open the browser and check http://127.0.0.1:9000/unichatjs/myapp

Events

The 'connection' event is emitted when a unichat connects to the server.

uniChatServer.on('connection', (client) => { ... });

The 'disconnect' event is emitted when a unichat disconnects from the server or when the unichat can no longer be reached.

uniChatServer.on('disconnect', (client) => { ... });

HTTP API

Read /src/api/README.md

Running tests

$ npm test

Docker

We have 'ready to use' images on docker hub: https://hub.docker.com/r/unichatjs/unichatjs-server

To run the latest image:

$ docker run -p 9000:9000 -d unichatjs/unichatjs-server

You can build a new image simply by calling:

$ docker build -t myimage https://github.com/nzldev/unichatjs-server.git

To run the image execute this:

$ docker run -p 9000:9000 -d myimage

This will start a unichatjs server on port 9000 exposed on port 9000 with key unichatjs on path /myapp.

Open your browser with http://localhost:9000/myapp It should returns JSON with name, description and website fields. http://localhost:9000/myapp/unichatjs/id - should returns a random string (random client id)

Running in Google App Engine

Google App Engine will create an HTTPS certificate for you automatically, making this by far the easiest way to deploy UniChatJS in the Google Cloud Platform.

  1. Create a package.json file for GAE to read:
echo "{}" > package.json
npm install express@latest unichat@latest
  1. Create an app.yaml file to configure the GAE application.
runtime: nodejs

# Flex environment required for WebSocket support, which is required for UniChatJS.
env: flex

# Limit resources to one instance, one CPU, very little memory or disk.
manual_scaling:
  instances: 1
resources:
  cpu: 1
  memory_gb: 0.5
  disk_size_gb: 0.5
  1. Create server.js (which node will run by default for the start script):
const express = require('express');
const { ExpressUniChatServer } = require('unichat');
const app = express();

app.enable('trust proxy');

const PORT = process.env.PORT || 9000;
const server = app.listen(PORT, () => {
  console.log(`App listening on port ${PORT}`);
  console.log('Press Ctrl+C to quit.');
});

const uniChatServer = ExpressUniChatServer(server, {
  path: '/'
});

app.use('/', uniChatServer);

module.exports = app;
  1. Deploy to an existing GAE project (assuming you are already logged in via gcloud), replacing YOUR-PROJECT-ID-HERE with your particular project ID:
gcloud app deploy --project=YOUR-PROJECT-ID-HERE --promote --quiet app.yaml

Privacy

See PRIVACY.md

Problems?

Discuss UniChatJS on our Telegram chat: https://t.me/joinchat/ENhPuhTvhm8WlIxTjQf7Og

Please post any bugs as a Github issue.