Epub web editor using JavaScript and HTML

I like to add the epub program to the application, but I have no idea how I can display the contents of epub in the browser. Is there a good working model for epub unzipping, parsing in JavaScript is available? Is there any other way to implement this reader?

Thanks in advance!

+6
source share
3 answers

Epubjs is a JavaScript library for rendering ePUB in a browser on many devices. It provides general e-book features (such as persistence and pagination) without the need to develop a special application or plug-in.

Unlike the application, our HTML / JavaScript reader can be placed anywhere and can be easily customized using JavaScript, for example, changing the interface or adding annotation functions.

I recommend checking out https://github.com/futurepress/epub.js

+2
source

One way is to use the javascript ePUB library. One such js-epub library.

In the article, three epub javascript readers discuss this in a bit more detail.

epubReader also seems to have the same problem, but with different technologies.

+1
source

Take a look at Readium, which does it all.

+1
source

All Articles