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

btparse

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

btparse

Very fast way for parse torrent files. With C++ implementation, based on libtorrent.

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-88.57%
Maintainers
1
Weekly downloads
 
Created
Source

Btparse

Very fast way for parse torrent files. With C++ implementation, based on libtorrent.

Why only sync api?

Как известно nodejs однопоточен. Для создания асинхронного взаимодействия рабочая функция запускается в отдельном потоке, однако из этого потока мы не имеем доступа к структурам V8. Текущая реализация портирована из libtorrent и использует структуры V8 для хранения данных. Если же использовать некий внутренний безопасный тип для хранения данных, потом всё равно придётся перекидывать эти данные в v8::Value. А это усложнение просто не имеет смысла.

Current implementation used V8 structures and types in a decoder.

Install

npm install btparse

Example

var bt = require("btparse")
	, fs = require("fs")
    ;
    
 fs.readFile("some.torrent", {encoding:null}, function(e, file){
 	var torrent = bt.decode(file);	// Buffer for decode torrents
 });
 
 var list = bt.decode("li1ei2ei3ee");	// String for decode simple string

License

MIT

Keywords

FAQs

Package last updated on 09 Jun 2014

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