notification-server
Version:
Based on NowJS, a standalone server for sending and receiving notification across different live users
12 lines (11 loc) • 368 B
JavaScript
(function() {
exports.EventTypes = {
STATE_SERVER_STARTED: 'server_started',
STATE_SERVER_STOPPED: 'server_stopped',
STATE_SERVER_ERROR: 'server_error',
SUBSCRIBE_CLIENT: 'sub_client',
UNSUBSCRIBE_CLIENT: 'unsub_client',
PUBLISH_MSG_TO_CLIENTS: 'publish_msg_to_clients',
PUBLISH_MSG_TO_CLIENT: 'publish_msg_to_client'
};
}).call(this);