Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
A modern bencode parser focused on speed and perfomance. It used recursive descent parser
, a kind of top-down
parsers.
// classic api
const decode = require('btparse')
// or you can use lazy parser
// const decode = require('btparse/lazy')
console.log(decode(torrent).info.name)
console.log(decode('d3:abcli13eee')) // {abc: [ 13 ]}
nodejs 7.5.0 / windows 10 x64 / i5 4690
Library | op/s | ms (1e5 op) |
---|---|---|
bencode | 118,387 | 838.424 |
btparse | 161,059 | 641.632 |
btparse#lazy | 143,258 | 1090.971 |
decode(input: Buffer|String, opts: Options) -> Object|Number|Array|Buffer
Parse and decode bencoded message.
opts.depth: Number
Max parse depth for objects; default = infinity
, min = 1
const decode = require('btparse')
console.log(decode('d2:abi2e2:bbd2:ccleee', {depth: 1})) // {ab: 2, bb: Buffer.from('d2:cclee')}
decode(input: Buffer|String) -> Proxy<Object>|Number|Array|Buffer
The main difference is that all buffers aren't decoded into a string in parsing time. Required nodejs 6+.
const decode = require('btparse/lazy')
// get prop
console.log(decode(torrent).info.name)
// check prop
console.log('name' in decode(torrent).info)
// get all keys / props
console.log(Reflect.ownKeys(decode(torrent)))
MIT, (c) Dmitry Tsvettsikh, 2017+
FAQs
A modern bencode parser focused on speed and perfomance
We found that btparse 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.