You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

buzzapi

Package Overview
Dependencies
Maintainers
0
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buzzapi

Simple node library for interacting with buzzapi

2.1.2
latest
Source
npmnpm
Version published
Weekly downloads
67
86.11%
Maintainers
0
Weekly downloads
 
Created
Source

Build Status Coverage Status Known Vulnerabilities

Simple nodejs library for communicating with buzzapi.

var BuzzApi = require('buzzapi');
var buzzapi = new BuzzApi({'apiUser': 'id', 'apiPassword': 'secret'});
# with callbacks
buzzapi.post('resource', 'operation', function(err, body){console.log(body)});
# or Promises
buzzapi.post('resource', 'operation').then(body => {console.log(body);}).catch(err => {console.error(err);});

FAQs

Package last updated on 15 Jan 2025

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