Skip to content

Documentation

Micleusanu Nicu edited this page Apr 7, 2014 · 94 revisions

simpleS is under active development, the API may change from version to version, it is highly recommended to read the documentation of the current version as there may me be some radical changes

Table of Contents:

var simples = require('simples');

New simpleS Instance

simples([port, options, callback])

port: number

options: object

callback: function

simpleS needs only the port number and it sets up a HTTP server on this port.

var server = simples(80);

// or simpler

var server = simples(); // the server will be set on the port 80

To set up an HTTPS server the options object is needed with key and cert or pfx attributes, these will be the paths to the .pem or .pfx files, see https and tls core modules for more details, the options object is the same used there with the only difference that simpleS resolve the content of key and cert or pfx attributes, so the key and cert or pfx attributes are required. The requests on HTTPS are always listen on port 443. Automatically, with the HTTPS server an HTTP server is created which will have the same routes as the HTTPS server (see Routing). To check the protocol the connection.protocol property is used (see Connection Interface).

var server = simples(443, {
    key: 'path/to/key.pem',
    cert: 'path/to/cert.pem'
});

// or just

var server = simples({ // the server will be set on port 443
    key: 'path/to/key.pem',
    cert: 'path/to/cert.pem'
});

To redirect the client to HTTPS, use a structure like this:

server.get('/', function (connection) {
    if (connection.protocol === 'http') {
        connection.redirect('https://' + connection.url.host + connection.url.path, true);
    } else {
        // Application logic
    }
});

The third parameter callback is used to know when the server has started running.

Server Management

Starting and Restarting

.start([port, callback])

port: number

callback: function()

Start listening for requests on the provided port. If the server is already started then simpleS will restart the server and will listen on the new provided port. Can have an optional callback. All connection in simpleS are kept alive and the restart can take few seconds for closing alive http and ws connections. While restarting, no new connection will be accepted but existing connections will be still served. This method is called automatically when a new simpleS instance is created, it is not needed to call it explicitly on server creation. The purpose of this method is to provide a way to switch port.

server.start(80, function () {
    // Application logic
});

Stopping

.stop([callback])

callback: function()

Stop the server. Can have an optional callback. All connection in simpleS are kept alive and the closing can take few seconds for closing alive http and ws connections. While closing, no new connection will be accepted but existing connections will be still served.

server.stop(function () {
    // Application logic
});

Virtual Hosting

.host(name[, config])

name: string

config: object

simpleS can serve multiple domains on the same server and port, using .host() method it is simple to specify which host should use which routes. By default, simpleS has the main host which will route all existent routes of the simpleS instance, this is vital for one host on server or when it is needed a general behavior for incoming requests. This method will create and configure a new host or will return an existing host with a changed configuration.

var host = server.host('example.com');

Host Configuration

.config(config)

config: object

Change the configuration of the host. Possible attributes:

Compression configuration:

compression: {
    enabled: true, // Activate the compression, by default the compression is enabled
    options: null, // Set compression options, see more on http://nodejs.org/api/zlib.html#zlib_options
    preferred: 'deflate' // Set the prefereed compression type, can be `deflate` or `gzip`, by default is `deflate`
}

limit: number // 1048576 - Set the limit of the request body in bytes, default is 1MB.

origins: array of strings // [] - Set the origins accepted by the host. By default, the server will accept requests only from the current host. To accept requests from any origin use '*', if this parameter is used as the first parameter then all next origins are rejected. 'null' is used for local file system origin. These limitations will work for HTTP GET and POST request and even for WebSocket requests. The current host should not be added in the list, it is accepted anyway.

['null', 'localhost', 'example.com'] // Will accept requests only from these 3 hosts

['*', 'example.com'] // Will accept requests from all hosts except 'example.com'

referers: array of strings // [] - Set the referers that can use the static resources of the host. By default, the server will response to all referers. To accept all referers except some specific the first parameter should be *. The current host should not be added in the list, it is served anyway. The server will respond with error 404 to unacceptable referers.

['*', 'example.com'] // will respond to all referers except 'example.com'

['example.com', 'test.com'] // Will respond only to these 2 referers

Session configuration:

session: {
    enabled: false, // Activate the session
    store: simples.store(), // Session store, default is simples memcached store
    timeout: 3600 // Set the time to live of a session in seconds, default is 1 hour, zero for infinite timeout
}

Sessions are stored by default inside an memcached container, to define another container for them it is needed an object instance with the next methods:

.get(id, callback) - should return inside the callback function the session container if it is found, if the session defined by the id parameter is not found then the callback function should return null;

.set(id, session, callback) - should add the session container defined by the first two paramters and execute the callback function when the session container is saved to the sessions storage.

.clean() - should remove the sessions that are expired by comparing the current time with the .expires attribute of the session containers.

Note: The API is unstable at the moment, can be made some changes in the future releases

Middlewares

.middleware(callback[, remove])

callback: function(connection, next)

remove: boolean

Each host accepts middlewares to be implemented, which allow to add some additional implementations which are not available out of the box. The middlewares can manipulate the connection object and to call the next middleware or the internal simpleS functional. The order in which middlewares are defined has importance because they will be executed in the same way. simpleS will prevent the same middleware to be attached. To remove a middleware from the list its reference should be provided as the first parameter and the second parameter should be a true value.

host.middleware(function (connection, next) {
    if (connection.path = '/restricted') {
        connection.end('You do not have right to be here');
        next(true); // Will stop the middleware chain and connection routing
    } else {
        next(); // Will continue to the next middleware if it exists or will continue to connection routing
    }
});

Templating

.engine(engine)

engine: object

To render templates it is necessary to define the needed template engine which has a .render() method. The rendering method should accept 1, 2 or 3 parameters, source, imports and/or callback, source should be a string that defines the path to the templates, imports may be an optional parameter and should be an object containing data to be injected in the templates, callback is a function that is called if the result is generated asynchronously. The templates are rendered using the .render() method of the Connection Interface. If the template engine does not correspond to these requirements then a wrapper object should be applied. This method is applicable on each host independently (see Virtual Hosting). Recommended template engine: simpleT.

var noopEngine = {
    render: function (source) {
        console.log(source);
        return source;
    }
};

host.engine(noopEngine);

// Wrapped unsupported template engine example
var unsupportedEngine = {
    renderFile: function (imports, source) {
        console.log(source);
        return source;
    }
};

host.engine({
    render: function (source, imports) {
        unsupportedEngine.renderFile(imports, source);
    }
});

Routing

All the methods described below are applicable on each host independently (see Virtual Hosting). All route paths are case sensitive and should contain only paths without queries to exclude possible unexpected behavior and to ensure improved performance, undesired data will be cut off. All routes are relative to the host root and may not begin with /, simpleS will ignore it anyway. The routes may be fixed or can contain named parameters. Fixed routes are fast and simple, while the second ones are more flexible and handy in complex applications. The named parameters in the advanced routes are mandatory, if at least one component of the route is absent in the url then the url is not routed.

'user/john/action/thinking'; // Fixed route

'user/:user/action/:action'; // Advanced routing with named parameters

/*
    This route will match this request url:

    /user/mary/action/cooking

    with parameters:

    {
        user: 'mary',
        action: 'cooking'
    }
*/

'user/:user/*'; // Advanced routing that can match anything

/*
    This route will match these request urls:

    /user/mary/home
    /user/mary/friends/john
*/

All Requests

.all(route, result)

route: array[strings] or string

result: function(connection) or string

Listen for all supported types of requests (DELETE, GET, HEAD, POST and PUT) and uses a callback function with connection as parameter or a string for rendering (see Connection.render()), this is useful for defining general behavior for all types of requests. This method has less priority then the other methods described below to allow specific behavior for routes.

DELETE Requests

.del(route, result)

route: array[strings] or string

result: function(connection) or string

Listen for DELETE requests and uses a callback function with connection as parameter or a string for rendering (see Connection.render()).

GET Requests

.get(route, result)

route: array[strings] or string

result: function(connection) or string

Listen for GET requests and uses a callback function with connection as parameter or a string for rendering (see Connection.render()).

POST Requests

.post(route, result)

route: array[strings] or string

result: function(connection) or string

Listen for POST requests and uses a callback function with connection as parameter or a string for rendering (see Connection.render()).

PUT Requests

.put(route, result)

route: array[strings] or string

result: function(connection) or string

Listen for PUT requests and uses a callback function with connection as parameter or a string for rendering (see Connection.render()).

General routing

.route(verb, route, result)

verb: 'all', 'del', 'get', 'put' or 'post'

route: array[strings] or string

result: function(connection) or string

Can add listeners for all types of routes. The methods described below are just shortcuts to this method. For better legibility use shortcuts.

Error Routes

.error(code, result)

code: 404, 405 or 500

result: function(connection) or string

Listen for errors that can have place and uses a callback function with connection as parameter or a string for rendering (see Connection.render()). Only one method call can be used for a specific error code, if more .error() methods will be called for the same error code only the last will be used for routing. Possible values for error codes are: 404 (Not Found), 405 (Method Not Allowed) and 500 (Internal Server Error). If no error routes are defined, then the default ones will be used.

Examples for routing methods:

host.all('/', function (connection) {
    // Application logic
});

host.get([
    '/',
    '/index'
], function (connection) {
    // Application logic
});

host.error(404, 'not_found.ejs');

host.post([
    '/',
    '/index'
], 'index.ejs');

Static Files

.serve(directory[, callback])

directory: string

callback: function(connection, files)

directory is the local path to a folder that contains static files (for example: images, css or js files), this folder will serve as the root folder for the server. simpleS will return response status 304 (Not Modified) if the files have not been changed since last visit of the client. Only one folder should be used to serve static files and the method .serve() should be called only once, it reads recursively and asynchronously the content of the files inside the folder and store them in memory. The folder with static files can contain other folders, their content will be also served. The provided path must be relative to the current working directory. The callback parameter is the same as for GET and POST requests, but it is triggered only when the client accesses the root of a sub folder of the folder with static files and get and aditional parameter files, which is an array of objects representing the contained files and folders, these objects contain the name and the stats of the files and folders, the callback parameter is optional. All files are dynamically cached for better performance, so the provided folder should contain only necessary files and folders not to abuse the memory of the server.

host.serve('root', function (connection, files) {
    // Application logic
});

Removing Routes

.leave([type, route])

type: 'all', 'del', 'error', 'get', 'post', 'put' or 'serve'

route: 404, 405, 500, array[strings] or string

Removes a specific route, a set od routes, a specific type of routes or all routes. If the type and the route is specified, then the route or the set of routes of this type are removed. If only the type is specified, then all routes of this type will be removed. If no parameters are specified, then the routes will be set in their default values. Routes should be specified in the same way that these were added.

host.leave('post');

host.leave('get', '/nothing');

host.leave('serve');

host.leave('all', [
    '/home',
    '/index'
]);

Logging

.log([stream, ]callback)

stream: object(writable stream instance) or string

callback: function(connection)

Allows to log data about the established connections, will write data to the process.stdout stream or a defined writable stream, if the stream parameter is a string then the logger will write to file with the path described in the string. The callback parameter should return data which will be shown in the console. This function is triggered on new HTTP and WS requests.

host.log(function (connection) {
    return connection.url.href;
});

Connection Interface

The parameter provided in callbacks for routing requests is an object that contains data about the current request and the data sent to the client. The connection is a transform stream, see stream core module for more details.

{
    body: {},
    cookies: {
        user: 'me',
        pass: 'password'
    },
    files: {},
    headers: {
        host: 'localhost:12345',
        'user-agent': 'myBrowser',
        accept: 'text/html',
        'accept-language': 'ro;q=0.8,en;q=0.6',
        'accept-encoding': 'gzip, deflate',
        cookie: 'user=me; pass=password'
    },
    host: 'localhost',
    ip: '127.0.0.1',
    langs: [
        'ro',
        'en'
    ],
    method: 'GET',
    query: {},
    params: {},
    path: '/',
    protocol: 'http',
    session: {},
    url: {
        /* These will never be filled
        auth: null,
        hash: null,
        */
        host: 'localhost:12345',
        hostname: 'localhost',
        href: 'http://localhost:12345/',
        pathname: '/',
        path: '/',
        port: '12345',
        protocol: 'http:',
        query: {},
        search: '',
        slashes: true
    }
    /* methods */
}

.body

The content of the body of the request, for GET requests it is an empty object, for other types of requests it will contain parsed data if the request comes with a specific content type, otherwise it will contain plain data as a buffer, parsed files from requests with multipart/form-data are contained in connection.files

.cookies

An object that contains the cookies provided by the client.

.files

An object that contains files sent with multipart/form-data content type.

.headers

An object that contains the HTTP headers of the request.

.host

The hostname from the Host header.

.ip

The remote ip address of the request.

.langs

An array of strings that represents languages accepted by the client in the order of their relevance.

.method

The HTTP method of the request, it can be DELETE, GET, HEAD, POST and PUT for usual requests, but can have a different value on error 405.

.params

The object that contains named parameters from the route. This object is only populated when the request url match a specific route with named parameters. The named parameters represents strings that are limited only by / or the end of the url.

.path

The pathname of the url of the request.

.protocol

The name of the protocol of the request, can be http or https.

.query

The object that contains parsed query string from the url.

.session

A container used to keep important data on the server-side, the clients have access to this data using the _session cookie sent automatically, the _session cookie has a value of 40 hexadecimal characters which will ensure security for 1.46 * 10 ^ 48 values. The session cookie is protected by _hash cookie also with a width of 40 hexadecimal characters which is a hash from the _session key and a secret value. The session is available only before calling the .end() method of the connection so all manipulations should be made before the content of the connection is sent to the client, this rule is valid for both HTTP and WS connections.

.url

The url of the request split in components, see url core module for more details.

.cookie(name, value[, attributes])

name: string

value: string

attributes: object

Sets the cookies sent to the client, providing a name, a value and an object to configure the expiration time, to limit the domain and the path and to specify if the cookie is http only. To make a cookie to be removed on the client the expiration time should be set in 0. Can be used multiple times, but before .write() method.

connection.cookie('user', 'me', {
    expires: 3600,          // or maxAge: 3600, Set the expiration time of the cookie in seconds
    path: '/path/',         // Path of the cookie, should be defined only if it is different from the root, the first slash may be omitted, simpleS will add it
    domain: 'localhost',    // Domain of the cookie, should be defined only if it is different from the current host
    secure: false,          // Set if the cookie is secured and should be used only by HTTPS
    httpOnly: false,        // Set if the cookie should not be changed from client-side
});

.header(name[, value])

name: string

value: array[numbers or strings], null, number, or string

Sets, gets or removes a header of the response. Usually simpleS manages the headers of the response by itself setting the cookies, the languages, the content type or when redirecting the client, in these cases the method .header() should not be used. If the header already exists in the list then its value will be replaced. To send multiple headers with the same name the value should be an array of strings. If the value parameter is not defined then the value of the previously set header defined by the name parameter is returned. If the value parameter is null then the header defined by the name parameter is removed from the response.

connection.header('ETag', '0123456789'); // Set the 'ETag' header as '0123456789'

connection.header('ETag'); // => '0123456789'

connection.header('ETag', null); // The 'ETag' header is being removed

connection.header('ETag'); // => undefined

.lang([value])

value: null or string

Sets, gets or removes the language of the response. Should be used before the .write() method. Should be used only once. If the value parameter is not defined then the value of the previously set language is returned. If the value parameter is null then the Content-Language header is is removed from the response.

connection.lang('ro'); // Set the 'Content-Language' header as 'ro'

connection.lang(); // => 'ro'

connection.lang(null); // The 'Content-Language' header is being removed

connection.lang(); // => undefined

.length([value])

value: null or number

Sets, gets or removes the content length of the response in bytes. Should be used before the .write() method. Should be used only once. If the value parameter is not defined then the value of the previously set content length is returned. If the value parameter is null then the Content-Length header is removed from the response.

Note: this method should be used only if the compression is disabled otherwise it may result in unexpected behavior, also Node.JS send data using in chunked encoding, setting the content length will disable chunked encoding.

connection.length(1024); // Set the 'Content-Length' header as '1024'

connection.length(); // => '1024'

connection.length(null); // The 'Content-Length' header is being removed

connection.length(); // => undefined

.redirect(location[, permanent])

location: string

permanent: boolean

Redirects the client to the provided location. If the redirect is permanent then the second parameter should be set as true. For permanent redirects the code 302 is set, for temporary redirects - 301. Should not be used with the other methods except .cookie(), which should be placed before.

connection.redirect('/index', true);

.status([code])

code: number

Sets or gets the status code of the response. If the code parameter is not defined then the current status code is returned.

.type([type, override])

type: string

override: boolean

Sets, gets or removes the type of the content of the response. Default is 'html'. By default uses one of 100 content types defined in mime.js, which can be edited to add more content types. Should be used only once and before the .write() method. If the content type header is not set correctly or the exact value of the type is known it is possible to override using the second parameter with true value and setting the first parameter as a valid content type. The second parameter is optional. If the required type is unknown application/octet-stream will be applied. If the type parameter is not defined then the value of the previously set content type is returned. If the type parameter is null then the Content-Type header is removed from the response, it is not recommended to remove the Content-Type from the response. By default the text/html;charset=utf-8 type is set.

connection.type(); // => 'text/html;charset=utf-8'

connection.type('txt'); // Set the 'Content-Type' header as 'text/plain;charset=utf-8'

connection.type(); // => 'text/plain;charset=utf-8'

connection.type('text/plain', true);

connection.type(); // => 'text/plain'

.keep([timeout])

timeout: number

Each connection has a 5 seconds timeout for inactivity on the socket to prevent too many connections in the same time. To change the value of this timeout the .keep() method is called with the a new value in miliseconds, 0 for removing the timeout.

connection.keep(); // or connection.keep(0); removes the timeout

connection.keep(10000); // sets the timeout for 10 seconds

.write(chunk[, encoding, callback])

Writes to the connection stream, same as stream.writable.write

.end([chunk, encoding, callback])

Ends the connection stream, same as stream.writable.end

.send(data[, replacer, space])

data: any value

replacer: array[numbers or strings] or function(key, value)

space: number or string

Writes preformatted data to the connection stream and ends the connection, implements the functionality of JSON.stringify() for arrays, booleans, numbers and objects, buffers and strings are sent as they are. Should not be used with .write() or .end() methods, but .write() method can be used before. Should be used only once.

connection.send(['Hello', 'World']);

.drain(location[, type, override])

location: string

type: string

override: boolean

Get the content of the file located on the specified location and write it to the connection stream. Will set the content type of the file, can have the parameters from the .type() method. Should not be used with .write() or .end() methods, but .write() method can be used before. Should be used only once.

connection.drain('path/to/index.html', 'text/html', true);

.render(source[, imports])

source: string

imports: object

Renders the response using the template engine defined by the host in .engine() method (see Templating). Should not be used with .write() or .end() methods, but .write() method can be used before. Should be used only once.

connection.render('Hello <%= world %>', {
    world: 'World'
});

.close([callback])

callback: function()

Closes the connection and append an optional callback function to the finish event. It is similar to the .end() method but has only the callback parameter, can be used as a semantic synonym of the .end() method.

connection.close(function () {
    console.log('Connection closed');
});

WebSocket

The WebSocket host is linked to the current or the main HTTP host (see Virtual Hosting).

WebSocket Host

.ws(location[, config], listener)

location: string

config: object

listener: function(connection)

Create a WebSocket host and listen for WebSocket connections. The host is set on the specified location, can be configured to limit messages size by setting the limit attribute in the config parameter in bytes, default is 1048576 (10 MiB). The host can work in two modes, advanced and raw, in the raw mode only one type of messages can be send, it works faster but does not suppose any semantics for the messages, advanced mode allows multiple types of messages differenciated by different events, it is more flexible but involves more resources. To specify the type of the content which will be sent via the WebSocket connection the type parameter should be defined as binary or text, by default is text.

var echo = server.ws('/', {
    limit: 1024,
    mode: 'raw',
    type: 'binary'
}, function (connection) {
    // Application logic
});

.config([config, callback])

config: object

callback: function(connection)

Restarts the WebSocket host with new configuration and callback. The missing configuration parameters will not be changed.

echo.open({
    limit: 512,
}, function (connection) {
    // Application logic
});

.broadcast([event, ]data[, filter])

event: string

data: string or buffer

filter: function(element, index, array)

Sends a message to all connected clients. Clients can be filtered by providing the filter parameter, equivalent to Array.filter().

echo.broadcast('HelloWorld', function (element, index, array) {
    return element.protocols.indexOf('echo') >= 0; // Will send the message to clients that use "chat" as a sub protocol
});

.channel(name[, filter])

name: string

filter: function(element, index, array)

Opens a new channel with the provided name. If filter is defined, then all the connections of the WebSocket host that respect the filter callback will be bound to the channel. The channel is bound to the WebSocket host. See WebSocket Channel for more information.

.close()

Close all existing connections to the host, but the host still can receive new connections after this.

.destroy()

Close all existing connections and remove the host from the WebSocket hosts list.

WebSocket Connection

The object that represents the current WebSocket connection. The WebSocket connection is an writable stream, see stream core module for more details, and has some attributes from connection interface to handle needed data from the handshake request.

WebSocket Connection Members

.cookies

See Connection Interface .cookies.

.headers

See Connection Interface .headers.

.host

See Connection Interface .host.

.ip

See Connection Interface .ip.

.langs

See Connection Interface .langs.

.protocols

The array of protocols of the WebSocket connection.

.query

The object that contains the queries from the handshake HTTP request.

.session

See Connection Interface .session.

.url

See Connection Interface .url.

.write(chunk[, encoding, callback])

Writes to the connection socket, same as stream.writable.write

.end([chunk, encoding, callback])

Ends the connection socket, same as stream.writable.end

.close([callback]) callback: function()

Sends the last frame of the WebSocket connection and then closes the socket. Can have an optional callback function, which is fired when the connection is closed

.send([event, ]data) event: string

data: any value

Sends a message to the client. In advanced mode the event parameter is needed for sending data. If data is a buffer then the sent message will be of binary type, else - text type, arrays, booleans, numbers and objects are stringified.

.render([event, ]source[, imports]) event: string

source: string

imports: object

Using the template engine, send data through the WebSocket connection.

WebSocket Connection Events

As the WebSocket connection is a writable stream it emits all the events which are emitted by writable streams

message

Emitted when the WebSocket host receives a message from the client, this event is emitted only if the WebSocket host is configured in raw mode. The callback function has an object as a parameter with 2 attributes data, the content of the message, and type, the type of the message which can be binary or text.

WebSocket Channel

The object that groups a set of connections. This is useful for sending messages to a group of connections in a better way than the .broadcast() method of the WebSocket host. WebSocket channel is an event emitter, see events core module for more details.

.bind(connection)

connection: WebSocket Connection Instance

Adds the connection to the channel. Emits bind event with the connection as parameter.

.unbind(connection)

connection: WebSocket Connection Instance

Removes the connection from the channel. The connection remains alive. Emits unbind event with connection as parameter.

.close()

Drops all the connections from the channel and removes the channel from the WebSocket host. Channels are automatically closed if there are no bound connections. Emits close event with no parameters.

.broadcast([event, ]data[, filter])

event: string

data: string or buffer

filter: function(element, index, array)

Same as the WebSocket host .broadcast() method, but is applied to the connections of this channel. Emits broadcast event with event and / or data as parameters.

Client-Side Simple API

To have access to the simpleS client-side API it is necessary to add

<script src="simples.js"></script>

in the HTML code, this JavaScript file will provide a simple API for AJAX requests and WebSocket connections, also a simplified implementation of Node.JS event emitter.

AJAX (Asynchronous JavaScript and XML)

simples.ajax(url, params[, method])

url: string

params: object

method: 'delete', 'get', 'head', 'post' or 'put'

simples.ajax() will return an object which will create an XMLHttpRequest to the provided url, will send the needed parameters using the methods DELETE, GET (default), HEAD, POST or PUT. This object has 3 methods to attach listeners for error, progress and success events, which are named with the respective events. The AJAX request can also be aborted by the .stop() method.

var request = simples.ajax('/', {
    user: 'me',
    password: 'ok'
}, 'post').error(function (code, description) {
    // Application logic
}).progress(function () {
    // Application logic
}).success(function (response) {
    // Application logic
});

// Somewhere else to stop the request
request.stop();

Event Emitter

simples.ee()

simples.ee() is a simplified implementation of Node.JS event emitter in the browser, which would be useful to create new objects or to inherit in object constructors. See events core module for more details. Implemented methods:

.emit(event[, data, ...]) - triggers an event with some specific data.

.addListener(event, listener), .on(event, listener), .once(event, listener) - create listeners for the events, .once() creates one time listener.

.removeAllListeners([event]), .removeListener(event listener) - remove the listeners for events or all listeners for a specific event.

WS (WebSocket)

simples.ws(url[, config])

url: string

config: object

simples.ws() will return an object which will create an WebSocket connection to the provided url using the needed protocols, will switch automatically to ws or wss (secured) WebSocket protocols depending on the HTTP protocol used, secured or not. In the config parameter can be set the communication mode, the protocols and the type of the data which is sent, the configuration must match on the client and the server to ensure correct data processing. simples.ws() is an event emitter and has the necessary methods to handle the listeners like Node.JS does, but on the client-side, note that .emit() method does not send data it just triggers the event, this is useful to instantly execute some actions on the client or for debugging the behavior of the WebSocket connection.

var socket = simples.ws('/', {
    mode: 'raw',
    protocols: ['echo'],
    type: 'text'
}).on('message', function (message) {
    this.send('Hello World');
});

Socket Management

simples.ws() has 2 methods for starting/restarting or closing the WebSocket connection:

.open([url, protocols]) - starts or restarts the WebSocket connection when needed, url must be a string, protocols - an array of strings, can be used for recycling the WebSocket connection and to connect to another host, this method is automatically called with simples.ws() or when the connection is lost.

.close() - closes the WebSocket connection.

Events

message - default event received in raw mode or in advanced mode if the incoming message could not be parsed, the callback function has one parameter, the received data.

error - triggered when an error appears, the callback function has one parameter, the message of the error.

close - triggered when the WebSocket connection is closed, the callback function has no parameters.

Data Management

Based on the third parameter in simples.ws() the communication with the server can be made in advanced or raw mode, .send() method is very robust, it will send data even if the connection is down, it will try to create a new connection to the server and send the message, below are examples of receiving and sending data in these modes:

Receiving Data in Raw Mode
socket.on('message', function (message) {
    // Application logic
});
Receiving Data in Advanced Mode
socket.on(event, function (data) {
    // Application logic
});
Sending Data in Raw Mode
socket.send(data);
Sending Data in Advanced Mode
socket.send(event, data);
Clone this wiki locally