🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
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
Version published
Weekly downloads
1
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

bittorrent

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