A powerful yet easy-to-use epub parser
The package exports a simple parser function which use epub file as input and output JavaScript object.
As it is written in TypeScript, types are already included in the package.
npm install @gxl/epub-parser --saveor if you prefer yarn
yarn add @gxl/epub-parserimport { parseEpub } from '@gxl/epub-parser'
const epubObj = await parseEpub('/path/to/file.epub', {
type: 'path',
})
console.log('epub content:', epubObj)type: string or buffer
It can be the path to the file or file's binary string or buffer
type: object
It forces the parser to treat supplied target as the defined type, if not defined the parser itself will decide how to treat the file (useful when you are not sure if the path is valid).
The output is an object which contains structure, sections, info(private property names start with _. I don't recommend using them, since they are subscribed to change).
structure is the parsed toc of epub file, they contain information about how the book is constructed.
sections is an array of chapters or sections under chapters, they are referred in structure. Each section object contains the raw html string and a few handy methods.
Section.prototype.toMarkdown: convert to markdown object.Section.prototype.toHtmlObjects: convert to html object. And a note aboutsrcandhref, thesrcandhrefin raw html stay untouched, but thetoHtmlObjectsmethod resolvessrcto base64 string, and altershrefso that they make sense in the parsed epub. And the parsedhrefis something like#{sectionId},{hash}.
- Raise an issue in the issue section.
- PRs are the best.
❤️