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

tankobon

v1.0.0-alpha.5

Published

A script to download and bind Manga pages into an ePub

Downloads

7

Readme

Tankobon

A simple script for downloading manga and converting it into ePub ebooks. Warning: this is not a polished application. Use at your own risk.

Additionally, don't download manga you don't own legally.

Usage

You'll need a functional Node environment, including NPM. To install:

npm install -g tankobon

Invoke the script like this:

tankobon -m <stub> -c <stub> -t <title>

Alternatively, if you don't want to install the package, and you have Yarn installed, you can just clone the repo and run the script directly:

yarn start -m <stub> -c <stub> -t <title>

There are two supported manga sources: Mangasee and Manganato. If you don't specify a source, the script will use Mangasee. For either one, you'll need "stubs" for both the manga and chapter(s) you want to download. You can get those from the URL:

Mangasee

https://mangasee123.com/read-online/Spy-X-Family-chapter-56.html
                                    ^^^^^^^^^^^^ ^^^^^^^^^^
                                    Manga        Chapter

Manganato

https://readmanganato.com/manga-em981495/chapter-59
                                ^^^^^^^^ ^^^^^^^^^^
                                Manga    Chapter

The script can handle multiple chapter stubs at once. Full usage:

Usage: Tankobon [options]

A script to download Manga pages and bind them into an ePub.

Options:
  -V, --version                   output the version number
  -m, --manga-stub <stub>         The Manganato URL stub for the manga series
  -c, --chapter-stubs <stubs...>  A list of chapter stubs to download
  -t, --title <title>             The title of the output ePub
  -o, --output <path>             The fully-resolved local path to write the output ePub
  -a, --author <author>           The author of the output ePub
  -i, --cover <path>              The fully-resolved local path to a cover image
  -s, --source <source>           The source of the manga images. Available options: manganato, mangasee
  -h, --help                      display help for command

Development

To build the project, run this command:

yarn build

You can run the project locally with yarn start; there is also a VS Code launch file provided that will start a debugger.