Coder Social home page Coder Social logo

lyoe / kindlebookmaker Goto Github PK

View Code? Open in Web Editor NEW

This project forked from barretlee/kindlebookmaker

0.0 1.0 0.0 10.72 MB

Kindle Book Maker with KindleGen, Make Book from RSS/single URL/directory and so on.

License: MIT License

JavaScript 77.97% HTML 6.70% CSS 15.33%

kindlebookmaker's Introduction

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

LICENSE

The MIT License (MIT)

Copyright (c) 2016 小胡子哥

kindlebookmaker's People

Contributors

barretlee avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.