Socket
Socket
Sign inDemoInstall

hoss

Package Overview
Dependencies
24
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hoss

This is the Hoss Agent for NodeJS/Browser. The Agent will capture your outbound calls to 3rd party API and let you know when things aren't working. Sign up at https://hoss.com for a free account.


Version published
Weekly downloads
24
increased by118.18%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Hoss Javascript Agent

This is the Hoss Agent for NodeJS/Browser. The Agent will capture your outbound calls to 3rd party API and let you know when things aren't working. Sign up at https://hoss.com for a free account.

Installation

$ npm i hoss

Prerequisites

  • Hoss account and API Key
  • Node 8.10 or higher

Getting started

Put the following snippet of code, ideally at the top of your program:

ES2015 module import:

import hoss from 'hoss';

hoss(YOUR_API_KEY);

CommonJS module require:

const hoss = require('hoss');

hoss(YOUR_API_KEY);

AMD module require:

require(['hoss'], function (hoss) {
  // ...
  hoss(YOUR_API_KEY);
});

You also can use the agent in the browser by loading it via a script tag:

<!DOCTYPE html>
<html>
  <head>
    <script
      src="https://cdn.hoss.com/latest/bundle.min.js"
      crossorigin="anonymous"
    ></script>

    <script>
      // Property in the window object
      window.hoss(YOUR_API_KEY);
    </script>
  </head>
</html>

Options

OptionTypeDescriptionDefault
hossServerURLStringHoss Server
hossEventApiPathStringHoss server path
hossApiURLStringHoss API Url
remoteConfigEnabledBooleanEnable or disable remote configuration fetchingtrue
remoteConfigIntervalIntegerTime interval in milliseconds to fetch remote configuration300000

FAQs

Last updated on 16 Jul 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc