Giter Site home page Giter Site logo

epub.js's Introduction

Epub.js

FuturePress Views

Epub.js is a JavaScript library for rendering ePub documents in the browser, across many devices.

Epub.js provides an interface for common ebook functions (such as rendering, persistence and pagination) without the need to develop a dedicated application or plugin. Importantly, it has an incredibly permissive Free BSD license.

Try it while reading Moby Dick

Why EPUB

Why EPUB

The EPUB standard is a widely used and easily convertible format. Many books are currently in this format, and it is convertible to many other formats (such as PDF, Mobi and iBooks).

An unzipped ePUB3 is a collection of HTML5 files, CSS, images and other media – just like any other website. However, it enforces a schema of book components, which allows us to render a book and its parts based on a controlled vocabulary.

More specifically, the ePUB schema standardizes the table of contents, provides a manifest that enables the caching of the entire book, and separates the storage of the content from how it’s displayed.

Getting Started

Get the minified code from the build folder:

<script src="../build/epub.min.js"></script>

If you plan on using compressed (zipped) epubs (any .epub file) include the minified version of JSZip.js which can be found in build/libs

<!-- Zip JS -->
<script src="/build/libs/zip.min.js"></script>

Setup a element to render to:

<div onclick="Book.prevPage();"></div>
<div id="area"></div>
<div onclick="Book.nextPage();"></div>

Create the new ePub, and then render it to that element:

<script>
	var Book = ePub("url/to/book/");
	Book.renderTo("area");
</script>

See the Documentation to view events and methods for getting the books contents.

The Examples are likely the best place to learn how to use the library.

Internet Explorer

Compatibility with IE is best with wicked-good-xpath, a Google-authored pure JavaScript implementation of the DOM Level 3 XPath specification (but not required). More info at https://code.google.com/p/wicked-good-xpath/

You can download the latest wgxpath here or from the examples folder.

<script src="/examples/wgxpath.install.js"></script>

Then install wgxpath via a hook like the one below:

EPUBJS.Hooks.register("beforeChapterDisplay").wgxpath = function(callback, renderer){

  wgxpath.install(renderer.render.window);

  if(callback) callback();
};

wgxpath.install(window);

There are currently a number of open issues for Internet Explorer any help addressing them would be greatly appreciated.

Recent Updates

  • v2 splits the render method from the layout and renderer. Currently only iframe rendering is supported, but this change will allow for new render methods in the future. See the breaking changes to the renderer here.

  • Work-in-progress pagination support using EPUB page-lists. See a usage example. renderer:pageChanged has changed to renderer:locationChanged and a book:pageChanged event was added to pass pagination events.

  • Moved Demo Reader to /reader/ and the source to /reader_src/.

  • Updated CFI handling to support text offsets. CFIs return wrapped like: "epubcfi(/6/12[xepigraph_001]!4/2/28/2/1:0)". Ranges to be added soon.

  • Added support for EPUB properties. This can be overridden in the settings and default to {spread: 'reflowable', layout: 'auto', orientation: 'auto'}

  • Updated Documentation

  • Many more Tests

Running Locally

Install node.js

Then install the project dependences with npm

npm install

You can run the reader locally with the command

node server.js

Builds are concatenated and minified using gruntjs

To generate a new build run

grunt

Or, to generate builds as you make changes run

grunt watch

Examples

View All Examples

Testing

Once you start a server you can run the QUnit tests at http://localhost:8080/tests/

You can download the test books from https://github.com/futurepress/books by running:

git submodule update --init --recursive

Then you can pull the latest with:

git submodule foreach git pull origin master

Hooks

Similar to a plugins, Epub.js implements events that can be "hooked" into. Thus you can interact with and manipulate the contents of the book.

Examples of this functionality is loading videos from YouTube links before displaying a chapters contents or implementing annotation.

Hooks require a event to latch onto and a callback for when they are finished.

Example hook:

EPUBJS.Hooks.register("beforeChapterDisplay").example = function(callback, renderer){

    var elements = render.doc.querySelectorAll('[video]'),
        items = Array.prototype.slice.call(elements);

    items.forEach(function(item){
      //-- do something with the video item
    }

    if(callback) callback();

}

Additional Resources

Gitter Chat

Epub.js Developer Mailing List

IRC Server: freenode.net Channel: #epub.js

Follow us on twitter: @Epubjs

Other

EPUB is a registered trademark of the IDPF.

epub.js's People

Contributors

ajrenold avatar alanshaw avatar alex-atomic avatar aron-bordin avatar bielskij avatar bit avatar bjdmeest avatar chok avatar dsk7 avatar fchasen avatar geek1011 avatar gimox avatar imefisto avatar jacksonrayhamilton avatar jakehartnell avatar jessiehernandez avatar jonathon-love avatar krushton avatar lest avatar matewilk avatar mellenbe avatar mifrea1 avatar minixt avatar nbarbosa avatar peeter-tomberg avatar philschatz avatar pmstss avatar stevekchiu avatar tilgovi avatar yetangitu avatar

Watchers

 avatar  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.