
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@buggyorg/library-client
Advanced tools
The client implementation for Buggy library access.
The Buggy Library uses a REST Interface. You can either connect to an external server or create a local server via a JSON document.
The API exposes the following methods:
fromFile(file): Specify a local JSON file. The client will start a local REST server and connect to it.fromJSON(json): Specify a JSON document as a Javascript Object. The client will start a local REST server and connect to it.connect(URL): Connect to a server via an URL like 'http://localhost:8818'.All three methods return the same promise-based API to access and manipulate the library.
| Method | Description |
|---|---|
info() | Get basic server information like library version and server type. |
components() | Get all components in the library. |
componentCount() | Get the number of all components defined in the library |
component(meta, [version]) | Get a specific component with a given meta key. The version is optional and it will get the newest version if no version is specified. |
addComponent(component) | Insert a new component via a JSON object. The component must be valid and it must be the only component with that meta key in that version. |
meta(component, [key], [version]) | Get meta information for a component. The key and version are optional, if you don't define them you get all keys of the latest versionen. You can omit the version or the key by not specifying them or setting them to null. |
addMeta(component, key, value, [version]) | Add meta information for a component and a specific key. If you don't specify a version the key will be set in the latest version. |
config(key) | Get the configuration value for a specific key. |
setConfig(key, value) | Set the configuration Value for a specific key. |
export() | Get a copy of the whole database. |
You can find the API docs here.
import {fromFile} from '@buggyorg/library-client'
var client = fromFile('myLibrary.json')
client.info()
.then((info) => console.log(info))
FAQs
Client implementation for Buggy library access.
The npm package @buggyorg/library-client receives a total of 6 weekly downloads. As such, @buggyorg/library-client popularity was classified as not popular.
We found that @buggyorg/library-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.