![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.