Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bencodejs

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bencodejs

Library to encode and decode data in the Bencode format.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

Bencode-JS

Library to encode and decode data in the Bencode format.

Install

npm install bencodejs

Usage

Setup
const Bencode = require('bencodejs');
Encoding
const pingQuery = {"t":"aa", "y":"q", "q":"ping", "a":{"id":"abcdefghij0123456789"}}
const bencodedObj = Bencode.encode(pingQuery);

d1:ad2:id20:abcdefghij0123456789e1:q4:ping1:t2:aa1:y1:qe

Decoding
const exampleResponse = 'd1:rd2:id20:mnopqrstuvwxyz123456e1:t2:aa1:y1:re';
const obj = Bencode.decode(exampleResponse, 'ascii');

{ r: { id: 'mnopqrstuvwxyz123456' }, t: 'aa', y: 'r' }

Methods

encode ⇒ Buffer

Encodes data in the bencoded format.

ParamType
objObject | Number | String | Array | Buffer
decode ⇒ Buffer | String | Number | Array | Object

Decodes data encoded in the bencoded format.

ParamType
bufBuffer
encodingString

Keywords

FAQs

Package last updated on 30 May 2017

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