Epub.js is a javascript library for rendering ePUB's in the browser, across many devices.
Epub.js provides common ebook functions (such as persistence and pagination) without the need to develop a dedicated application or plugin.
Unlike an application, our HTML / Javascript reader can be hosted anywhere and can be easily customized using javascript, such as changing the interface or adding annotation functionality.
Try it while reading Moby Dick
We've got a lot in store for the next few weeks (Till June 16th). We will be implementing major and awesome changes that will bring us closer to an Alpha release. Basically, if you're planning building something based off this... wait. It will be worth it.
Some things to look forward to:
- Separate rendering of the book out from the loading / parsing / control code Based on pdf.js using the library will work something like this (the reverse of how it works now):
var book = new EPUBJS.book("url/to/book")
book.render("div-id")-
New way of listening to book events and promises (shouldn't change much usage wise)
-
Improve the epub parsing code, with some help from Readium
-
A very simplified example version of the reader to test new features on
-
A framework (backbone / angular / ?) to use for our reader demo (which we suspect is going to start expanding quickly)
-
A generic way to handle settings
-
Plugin encapsulation stuff
We suggest forking the code AFTER these major changes.
Questions: email Jake.Hartnell@berkeley.edu
ePUB is a widely used and easily convertible format. Many books are currently in this format and it is used as the base for many proprietary formats (such as Mobi and iBooks). We have chosen the ePUB standard because it brings us as close as possible to our “Books on the Web” vision, while enforcing a standard which enables the development of more advanced reader functionality.
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.
install http-server
npm install http-server -gthen you can run the reader locally with the command
http-server- dev.html will pull from the source files and should be used during development.
- index.html will use the minified production libraries in the dist/ folder.
install gruntjs
npm install -g grunt-cli
npm installThen when you are ready to build just run
gruntFP.filePath = "/path/to/js/"; //-- For web workers
FPR.app.init("/path/to/epub/"); //-- Starts the reader, with path to a bookThe eBook reader uses persistence to cache the files from an epub for offline viewing, stores information about the book, and remembers what chapter the user was on. Being able to read a book when internet isn’t available, and remembering your place in the book is crucial to making our reader website work as an application and fulfill users expectations of how a eBook should function.
Currently, there is not a great cross browser solution for dynamic file storage. Chrome supports the Filesystem API, Firefox/IE support indexedDB, and Safari/Safari Mobile support Web SQL.
The reader detects the storage capabilities of the browser and picks the best available option. When internet is available, the entire book is loaded into storage. When possible, Web Workers is used to handle loading and saving the files, so as not to interfere with the reading experience.
The browser tells the reader when there is Internet connectivity, and by listening to those events, it automatically switches to using the stored files. Users can also manually switch to offline mode in the interface.
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:
FP.Hooks.register("beforeChapterDisplay").example = function(callback, chapter){
var elements = chapter.doc.querySelectorAll('[video]'),
items = Array.prototype.slice.call(elements);
items.forEach(function(item){
//-- do something with the video item
}
if(callback) callback();
}Follow us on twitter: @Epubjs
EPUB is a registered trademark of the IDPF.

