New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
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
npm
Version published
Weekly downloads
24
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