Socket
Socket
Sign inDemoInstall

bncode

Package Overview
Dependencies
0
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bncode

bittorrent bencoding and decoding.


Version published
Weekly downloads
871
increased by13.56%
Maintainers
1
Install size
125 kB
Created
Weekly downloads
 

Readme

Source

build status

bencoding for JS (node.js)

This is a small library to encode and decode bencoded (bittorrent) stuff. Bencoding is specified here.

Get & Install

github repository is here

Installable via npm (npm package name is bncode, note spelling!):

npm install bncode

Encoding

Encoding works as follows:

var benc  = require("bncode"),
    exmp = {}

exmp.bla = "blup"
exmp.foo = "bar"
exmp.one = 1
exmp.woah = {}
exmp.woah.arr = []
exmp.woah.arr.push(1)
exmp.woah.arr.push(2)
exmp.woah.arr.push(3)
exmp.str = new Buffer("Buffers work too")

var bencBuffer = benc.encode(exmp)

// d3:bla4:blup3:foo3:bar3:onei1e4:woahd3:arr \
// li1ei2ei3eee3:str16:Buffers work tooe

Decoding

Decoding will work progressively, e.g. if you're receiving partial bencoded strings on the network:

var benc = require("bncode"),
    buf  = null

decoder = new benc.decoder()
while (buf = receiveData()) {
  decoder.decode(buf)
}

log(decoder.result())

Or "all in one"

var benc = require("bncode"),
    buf  = getBuffer(),
    dec  = benc.decode(buf)

log(dec.bla)

There are some subtleties concerning bencoded strings. These are decoded as Buffer objects because they are just strings of raw bytes and as such would wreak havoc with multi byte strings in javascript.

The exception to this is strings appearing as keys in bencoded dicts. These are decoded as Javascript Strings, as they should always be strings of (ascii) characters and if they weren't decoded as JS Strings, dict's couldn't be mapped to Javascript objects.

Mapping bencoding to Javascript

 +----------------------------------------------------+
 |                |                                   |
 |  Bencoded      |    Javascript                     |
 |====================================================|
 |  Strings       |    node Buffers, unless they are  |
 |                |    Dictionary keys, in which case |
 |                |    they become Javascript Strings |
 |----------------+-----------------------------------|
 |  Integers      |    Number                         |
 |----------------+-----------------------------------|
 |  Lists         |    Array                          |
 |----------------+-----------------------------------|
 |  Dictionaries  |    Object                         |
 |                |                                   |
 +----------------------------------------------------+

Mapping Javascript to bencoding

The code makes a best effort to encode Javascript to bencoding. If you stick to basic types (Arrays, Objects with String keys and basic values, Strings, Buffers and Numbers) you shouldn't encounter suprises. Expect surprises (mainly not being able to round-trip encode/decode) if you encode fancy data-types.

Author

bncode was written by Tim Becker (tim.becker@kuriositaet.de) I can be reached via email or (preferably) submit a bug to the github repository.

Thanks

  • Roly Fentanes (fent) for bug reports.
  • Clark Fischer (clarkf)
  • The fine folks at Travis.
  • Patrick Williams
  • Feross Aboukhadijeh

License

MIT, see LICENSE

FAQs

Last updated on 11 Apr 2014

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc