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

kindle-book-maker

v0.0.1

Published

Kindle Book Maker with KindleGen

Downloads

6

Readme

Kindle Book Maker

中文文档

This Project is aimed at creating a kindle book generator. Fetching data from internet, then combo all data to a mini .mobi book, what you have to do is just edit profiles and run build commands.

Project structure

Data comes in three way:

  • spider fetch a uri content, but you need to config the class the article's title and content
  • spider fetch a rss source
  • from local file

Here is the structure of project:

Kindle Book Maker

After preparing data, The program will filter some dirty data, and transfer remote file link to local file, that means it will download the resources.

Finally, using kindleGen generate book. I had put the kindleGen file to /bin/kindlegen, 28M.

Usage

Try a simple demo:

git clone https://github.com/barretlee/kindleBookMaker.git;
cd kindleBookMaker;
npm install;
node index;
open build/*.mobi;

There are lots of function, simplify to three command.

  • generate from rss:
node index --rss http://barretlee.com/rss2.xml
# node index -r http://barretlee.com/rss2.xml
  • generate from a uri,-u URL titleQuery ContentQuery FilterRegExp:
node index --uri \
    http://www.barretlee.com/blog/2016/04/28/mini-query/ \
    .post-title \
    .post-content \
    /<div class="shit-spider"[\s\S]+?<\/div>/
  • generate from local directory:
node index --dirctory ./src/demo/
# node index -d ./src/demo/

and three other arguments:

  • --verbose, -v, detail about kindle generation.
  • --help, -h, help.
  • -push2kindle, -p, push the builded .mobi file to your kindle.

Configure

var moment = require('moment');

module.exports = {
  // entry: './src/KF8-Demo',
  entry: {
    base: './src/KF8-Demo',
    list: []
  },
  bookInfo: {
    title: "Barret Lee's Personal Website",
    lang: "zh",
    creator: "Barret Lee",
    copyright: "Barret Lee",
    publisher: "",
    coverImage: 'coverImage.png'
  },
  /*option*/
  output: {
    base: './build',
    format: '[name]-' + moment().format('YYYYMMDD')
  },
  /*option for uri*/
  singlePage: {
    title: 'div.title',
    description: 'div.content',
    reg: function(data) {
      return data.replace(/<div class="shit-spider"[\s\S]+?<\/div>/, '');
    }
  },
  /*option*/
  push2kindle: {
    email: '[email protected]',
    password: 'your-email-password',
    kindle: '[email protected]'
  }
};
  • entry, can be a String or an Object
    • base, the entry base, where remote file placed.
    • list, it impacts the order of book article list.
  • bookInfo, be attention to the coverImage, you should better set a value.
  • ouput, optional, default is ./build and [name].
  • singlePage, optional, for uri spider
  • push2kindle, optional, the kindle param is your device matched email, can be edit at here.

Todo

  • [ ] generate from markdown file directly.
  • [ ] fix push2kindle bug, cannot push .mobi format file, i don't konw why.

Relative articles

  • http://www.idpf.org/epub/30/spec/epub30-publications.html#sec-item-property-values
  • http://www.idpf.org/epub/20/spec/OPF_2.0.1_draft.htm
  • http://www.aliciaramirez.com/2014/05/how-to-make-a-kindle-ebook-from-scratch/

LICENSE

The MIT License (MIT)

Copyright (c) 2016 小胡子哥