Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eventsd

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eventsd

A library for interfacing with EventsD

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

eventsd

A library for interfacing with EventsD

Usage

    var EventsD = require('eventsd');

    var events = new EventsD();

    events.send('myEvent', 'some message', function (err) {
      if (err) {
        // an error occurred
      }

      // do something after event was sent
    });

Options

    var options = {
      host: '127.0.0.1',
      port: 8150,
      appName: 'myApp',
      environment: 'development'
    };

    var events = new EventsD(options);
  • host
    • The host location of the EventsD server.
    • Default: SZ_EVENTSD_HOST | '127.0.0.1'
  • port
    • The host port to connect.
    • Default: SZ_EVENTSD_HOST | 8150
  • appName
    • The name of the application sending events.
    • Default: SZ_EVENTSD_APP_NAME | SZ_APP_NAME | process.title | 'unknown'
  • environment
    • The name of the application's environment.
    • Default: SZ_EVENTSD_ENV | SZ_ENV | 'unknown'

Environment Variables

Environment variables set default values for the EventsD options. Override them by passing options to new EventsD()

SZ_EVENTSD_HOST: the EventsD host to connect to
SZ_EVENTSD_PORT: the port the EventsD server is listening on
SZ_EVENTSD_APP_NAME | SZ_APP_NAME: the name of the application sending the event
SZ_EVENTSD_ENV | SZ_ENV: the name of the environment that the event is in

Run Tests

  npm test

====================

Author: Craig Thayer
License: ISC

See LICENSE for the full license text.

Keywords

FAQs

Package last updated on 29 Mar 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc