npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

torrent-parser

v1.2.0

Published

parse torrent files, buffers, and the likes

Downloads

21

Readme

torrent-parser travis npm downloads Greenkeeper badge

Parse torrents from their files or buffers

Bot parse and write a torrent file.

Install

npm install torrent-parser

or download for global use:

npm install -g torrent-parser

Usage

import { decodeTorrentFile, decodeTorrent, encodeTorrent, parseInfo } from "torrent-parser"

DECODE


let file             = fs.readFileSync("./screen.torrent");
// Parse directly from the file
let parsedTorrent    = decodeTorrentFile("./screen.torrent");
// Or parse the buffer created from a file
let parsedTorrent    = decodeTorrent(file);





parsedTorrent =  {
  info: {
    length: 99525,
    name: <Buffer 53 63 72 65 65 6e 20 53 68 6f 74 20 32 30 31 37 2d 30 31 2d 32 31 20 61 74 20 38 2e 32 35 2e 31 35 20 41 4d 2e 70 6e 67>,
    'piece length': 16384,
    pieces: <Buffer 4a a0 c3 fb ce 71 26 8c 4e fb 56 fe 4c b1 f4 22 26 bc 59 59 26 c5 f5 90 f8 8d c5 60 90 5d 2d 2c 1d 4a 82 db 39 4f ae 98 c4 53 61 a1 85 8c 37 cf df 77 ... >,
    private: 0
  },
  infoBuffer: <Buffer 64 36 3a 6c 65 6e 67 74 68 69 39 39 35 32 35 65 34 3a 6e 61 6d 65 34 30 3a 53 63 72 65 65 6e 20 53 68 6f 74 20 32 30 31 37 2d 30 31 2d 32 31 20 61 74 ... >,
  infoHash: '74416fe776ca02ca2da20f686fed835e4dcfe84d',
  infoHashBuffer: <Buffer 74 41 6f e7 76 ca 02 ca 2d a2 0f 68 6f ed 83 5e 4d cf e8 4d>,
  name: 'Screen Shot 2017-01-21 at 8.25.15 AM.png',
  private: false,
  'creation date': 2017-02-14T21:24:02.000Z,
  'created by': 'Empire/vParrot',
  announce: [ 'udp://tracker.empire-js.us:1337,udp://tracker.openbittorrent.com:80,udp://tracker.leechers-paradise.org:6969,udp://tracker.coppersurfer.tk:6969,udp://tracker.opentrackr.org:1337,udp://explodie.org:6969,udp://zer0day.ch:1337' ],
  urlList: [],
  files: [
    { path: 'Screen Shot 2017-01-21 at 8.25.15 AM.png',
    name: 'Screen Shot 2017-01-21 at 8.25.15 AM.png',
    length: 99525,
    offset: 0 }
  ],
  length: 99525,
  pieceLength: 16384,
  lastPieceLength: 1221,
  pieces: [
    '4aa0c3fbce71268c4efb56fe4cb1f42226bc5959',
    '26c5f590f88dc560905d2d2c1d4a82db394fae98',
    'c45361a1858c37cfdf77bb716c48fa368f3605af',
    '4d4289c76994ee95b0302b76ca0df2a351a10afc',
    '84eac82d3f383e6c1bb9d5a0c18b5cdbc1b729af',
    'db265f87a7f6047916c30298479cae03c9dceccb',
    'fa2857f4fbeb4d3e9d7d847e4b94c6b418f4fa83'
  ]
}

ENCODE

let info = {
  length: 99525,
  name: <Buffer 53 63 72 65 65 6e 20 53 68 6f 74 20 32 30 31 37 2d 30 31 2d 32 31 20 61 74 20 38 2e 32 35 2e 31 35 20 41 4d 2e 70 6e 67>,
  'piece length': 16384,
  pieces: <Buffer 4a a0 c3 fb ce 71 26 8c 4e fb 56 fe 4c b1 f4 22 26 bc 59 59 26 c5 f5 90 f8 8d c5 60 90 5d 2d 2c 1d 4a 82 db 39 4f ae 98 c4 53 61 a1 85 8c 37 cf df 77 ... >,
  private: 0
}

// Encode just info files
const bencode        = require("bencode");

let file             = fs.readFileSync("./screen.torrent");
let parsedTorrent    = decodeTorrent(file);
let info             = bencode.encode(parsedTorrent.info);
// NOTE: INFO in the field is usually a bencoded buffer.
encodeTorrent(info, "./dev-screen3", (err) => {
  if (err) throw err;
  // SUCCESS
});
// Or encode full torrents
let file             = fs.readFileSync("./screen.torrent");
let parsedTorrent    = decodeTorrent(file);
encodeTorrent(parsedTorrent, "./dev-screen.torrent", (err) => {
  if (err) throw err;
  // SUCCESS
});

ISC License (Open Source Initiative)

ISC License (ISC) Copyright 2017 Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC") Copyright (c) 1995-2003 by Internet Software Consortium

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.