Skip to content

A library for reading and parsing multiple eBook and document formats.

Notifications You must be signed in to change notification settings

rodzyk/readiverse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Readiverse.js

Readiverse.js is a JavaScript library designed for reading and parsing multiple eBook and document formats, starting with .mobi and .djvu, with plans for future support of additional formats.

Features

  • 📖 MOBI Reader: Parse and extract content from .mobi files, including metadata, text, and images.
  • 📚 DJVU Reader: Load and display .djvu documents. (WIP..)

Installation

To install Readiverse.js, use npm:

npm install readiverse

Usage

Here's a simple example of how to use Readiverse.js to load a .mobi file:

import { MobiFileReader } from "./mobi";
import * as fs from 'fs';

const FILE_NAME = `assets/sample1.mobi`;

const view = new DataView(fs.readFileSync(FILE_NAME, null).buffer)
const mobi = new MobiFileReader(view);

const td = new TextDecoder("utf-8");
const html = td.decode(mobi.readText())

API

MobiFileReader

new MobiFileReader(file) Creates a new instance of the MobiFileReader with the provided file.

readText() Parses the .mobi file and returns an object containing metadata, content, and images.

Roadmap

  • MOBI file support
  • DJVU file support

Contributing

We welcome contributions! If you'd like to improve the library or add new features, feel free to submit a pull request or open an issue.

License

This project is licensed under the MIT License.

About

A library for reading and parsing multiple eBook and document formats.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published