New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cantina-amino

Package Overview
Dependencies
Maintainers
3
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cantina-amino

Enables a Cantina app to be auto-clustered by Amino

  • 4.1.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
increased by300%
Maintainers
3
Weekly downloads
 
Created
Source

cantina-amino

Enables a Cantina app to be auto-clustered by Amino.

Dependencies

  • app.server must be a valid server object.

Provides

  • app.amino - An amino instance.
  • app.service - An amino service attached to app.http.

Configuration

  • amino:service - A service name and version.
  • amino:... - All amino configuration will be passed to amino.init().

Defaults

{
  amino: {
    service: {
      name: app.pkgData ? app.pkgData.name : 'app',
      version: app.pkgData ? app.pkgData.version : '0.0.0'
    },
    silent: false
  }
}

Using an amino plugin


var app = require('cantina').createApp()
  , queue = require('amino-queue');

app.boot(function (err) {
  if (err) throw err;

  // Load cantina-amino, which exposes `app.amino`.
  app.require('cantina-amino');

  // Use plugins.
  app.amino.use(queue, {options...});

  // Start the app.
  app.start();
});

Developed by Terra Eclipse

Terra Eclipse, Inc. is a nationally recognized political technology and strategy firm located in Santa Cruz, CA and Washington, D.C.

FAQs

Package last updated on 27 Aug 2014

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