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

@arnabxd/bin-lookup

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arnabxd/bin-lookup - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "@arnabxd/bin-lookup",
"version": "1.0.0",
"version": "1.0.1",
"description": "Search bin details from various bin database",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

# BIN-LOOKUP
> Search bin details from various bin database
> Search bin details from various bin database
### Available Sources
- bins.ws
- binov.net
### Installation
```bash
npm i @arnabxd/bin-lookup
```
or
```bash
yarn add @arnabxd/bin-lookup
```
### Example
```ts
import { binLookup } from '@arnabxd/bin-lookup';
// or
const { binLookup } = require('@arnabxd/bin-lookup');
```
```ts
// using async await
let bindata = await binLookup(439129, 'binov.net');
console.log(bindata);
// or using callbacks
binLookup(439129).then((data)=> console.log(data));
```
### API
- binLookup
- `bin` : `number`
- `site` : `string` (Supported Websites. Default `bins.ws`)

@@ -12,3 +12,3 @@ {

},
"include": ["src", "src/types.ts"]
"include": ["src"]
}
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