A simple and modern web E-book reader, which allows you to read e-books within a browser.
Try it online: https://epub-browser.vercel.app
It now supports the following features:
-
Basic library management: Search by title, author or tag.
-
Dark mode
-
Page navigation: Keyboard controls supported (Left Arrow, Right Arrow and Spacebar for page turning/scrolling).
-
Kindle Mode: Enhanced style optimizations; allows page turning by tapping either side of the screen.
-
Reading progress bar
-
Chapter-wise table of contents (disabled in Page Turning Mode).
-
Font size and font family adjustment
-
Image zoom functionality
-
Mobile device compatibility: Especially for Kindle users—remember to tap Not Kindle on the homepage header to enable Kindle Mode for an optimized experience.
-
Code highlighting (disabled in Kindle Mode).
-
Reading position retention: Restores your last-read chapter (supported on all devices including Kindle) and your last-read location (supported on all devices except Kindle).
-
Custom CSS: Tailor the reading experience with custom styles, e.g.
#eb-content { margin: 50px; } #eb-content p { font-size: 2rem; }
Note: All core content is nested under the element with the
#eb-contentselector. -
Direct deployment on any web server (e.g. Apache): Use the
--no-serverparameter. -
Multithreading support
-
Drag-and-drop sorting: Main interface elements are draggable.
-
Calibre metadata integration: Displays tags (
dc:subject) and comments (dc:description) edited in Calibre. Note: After editing metadata in Calibre, use the "Edit book" function to save your changes. -
Watchdog utility: Monitors the user-specified directory (or the directory containing EPUB files) with
--watchparameter. Automatically adds newly added or updated EPUB files to the library.
Type the command in the terminal:
pip install epub-browser
# Open single book
epub-browser path/to/book1.epub
# Open multiple books
epub-browser book1.epub book2.epub book3.epub
# Open multiple books under the path
epub-browser *.epub
# Open multiple books under the current path
epub-browser .
# Do not start the server; only generate static website files, which can be directly deployed on any web server such as Apache.
epub-browser . --no-server
# Monitor all EPUB files in the directory specified by the user (or the directory where the EPUB file resides). When there are new additions or updates, automatically add them to the library.
epub-browser . --watch
# Specify the output directory of html files, or use tmp directory by default
epub-browser book1.epub book2.epub --output-dir /path/to/output
# Save the converted html files, will not clean the target tmp directory;
# Note: These files are for inspection purposes only and cannot be directly deployed to a web server. To enable direct deployment, please use the --no-server parameter.
epub-browser book1.epub --keep-files
# Do not open the browser automatically
epub-browser book1.epub book2.epub --no-browser
# Specify the server port
epub-browser book1.epub --port 8080Then a browser will be opened to view the epub file.
For more usage information, please use the --help parameter.
➜ epub-browser --help
usage: epub-browser [-h] [--port PORT] [--no-browser] [--output-dir OUTPUT_DIR] [--keep-files] [--log] [--no-server] [--watch]
filename [filename ...]
EPUB to Web Converter - Multi-book Support
positional arguments:
filename EPUB file path(s)
options:
-h, --help show this help message and exit
--port, -p PORT Web server port (default: 8000)
--no-browser Do not automatically open browser
--output-dir, -o OUTPUT_DIR
Output directory for converted books
--keep-files Keep converted files after server stops. To enable direct deployment, please use the --no-server parameter.
--log Enable log messages
--no-server Do not start a server, just generate files which can be directly deployed on any web server such as Apache.
--watch, -w Monitor all EPUB files in the directory specified by the user (or the directory where the EPUB file resides).
When there are new additions or updates, automatically add them to the library.How do I set it to start automatically on boot?
- add a file
epub-browser.plistin~/Library/LaunchAgents:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>Epub-Browser</string>
<key>ProgramArguments</key>
<array>
<string>/path/to/.venv/bin/epub-browser</string>
<string>--output-dir</string>
<string>/path/to/workdir</string>
<string>--watch</string>
<string>--no-browser</string>
<string>--keep-files</string>
<string>/path/to/Calibre Library</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>WorkingDirectory</key>
<string>/path/to/workdir</string>
<key>StandardOutPath</key>
<string>/path/to/workdir/run.log</string>
<key>StandardErrorPath</key>
<string>/path/to/workdir/err.log</string>
</dict>
</plist>run
which epub-browserto get the full path ofepub-browser
- run the command to make effective:
launchctl load -w ~/Library/LaunchAgents/epub-browser.plist
# launchctl unload -w ~/Library/LaunchAgents/epub-browser.plist
launchctl start epub-browser
# using kickstart to restart like this:
# launchctl kickstart -k gui/501/Epub-Browser
wait someone to add or ask ChatGPT.
- View All Books
- Switch Kindle Mode
- Search for Books
- Toggle Dark Mode
- Previous Chapter
- Next Chapter
- Previous Page: Keyboard Left Arrow
- Next Page: Keyboard Right Arrow, Spacebar
- Jump to a Specific Page
- Set Pagination Page Height to Customize Content Display per Page
- View Book Table of Contents
- Breadcrumb
- Custom CSS
- Scroll Reading
- Page-Turning Reading
- View Book Table of Contents
- View Chapter Table of Contents
- Return to Library Homepage
- Font Adjustment
- Drag Elements
- If there are errors or some mistakes in epub files, then you can use Calibre to convert to epub again.
- Issue: EPUB table of contents fails to display properly, usually due to missing
toc.ncxfile. - Fix: Use Calibre to re-convert the original file to EPUB. This generates a specification-compliant EPUB with correct TOC display.
- Issue: EPUB table of contents fails to display properly, usually due to missing
- Tags can be managed by calibre. After adding tags, you should click "Edit book" and just close the window to update the epub file or the tags will not change in the browser.
- By default, the program listens on the address
0.0.0.0. This means you can access the service via any of your local machine's addresses (such as a local area network (LAN) address like192.168.1.233), not justlocalhost. - Just find calibre library and run
epub-browser ., it will collect all books that managed by calibre. - You can combine web reading with the web extension called Circle Reader to gain more elegant experience.Other extensions that are recommended are: Diigo: Read more effectively with annotation tools ...










