
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-book-reader
Advanced tools
react-book-reader is a react wrapper for foliate-js - library for rendering e-books in the browser. Supports EPUB, MOBI, KF8 (AZW3), FB2, CBZ, PDF (experimental; requires PDF.js), or add support for other formats yourself by implementing the book interface
npm install react-book-reader --save
And in your react-component...
import { ReactReader } from 'react-book-reader'
export default () => (
<div style={{ height: '100vh' }}>
{/* Supports EPUB, MOBI, KF8 (AZW3), FB2, CBZ, PDF */}
<ReactReader url="/files/啼笑因缘.epub" />
</div>
);
| Name | Description | Type | Default |
|---|---|---|---|
| url | book url or File | string/File | — |
| location | set / update location of the book | string/number | — |
| title | the title of the book | string/ReactElement | — |
| showToc | whether to show the toc | boolean | true |
| Name | Description | Type | Default |
|---|---|---|---|
| url | book url or File | string/File | |
| tocChanged | when the reader has parsed the book you will receive an array of the chapters | function(toc) | |
| nextPage | display next page | function | |
| prevPage | display previous page | function | |
| setLocation | Set the page | function(href) | |
| LoadingView | if you want to customize the LoadingView | element | |
| ErrorView | if you want to customize the ErrorView | element |
FAQs
ReactBookReader
We found that react-book-reader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.