dairdev / Villain

An open source web-based comic book reader.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

An open source web-based comic book reader.


Installation

$ yarn add villain-react

WebWorker

This component uses the libarchivejs for the extraction process, so you will need to provide the path of webworker:

The webworker bundle lives in libarchive.js/dist folder so you need to make sure that it is available in your public folder since it will not get bundled if you're using bundler (it's all bundled up already)

const opts = {
  workerUrl: 'path to ../build/worker-bundle.js',
  ...
}

Usage

Import the component and the css styles

// Component
import Villain from 'villain-react'

// Css styles
import 'villain-react/dist/style.min.css'

// Path of the comicbook archive
const url = '/files/test.cbz'

//...

<Villain file={url} options={opts} />

Options

Available options to customize the reader component:

Name Type Default Description
workerUrl string null path to libarchive.js worker-bundle.
allowFullScreen bool true Show full screen button.
autoHideControls bool false Set inital auto hide state of toolbar.
preview number null Load and render only the provided number of images.

Development

Run yarn command to install the dependencies.

To start the development run yarn start, this will open up localhost:8080 on your default browser:

  • This uses webpack-dev-server and includes hot-reloading.

An example archive has been provided to play around inside ./build/testFile

  • A good resource for archives can be found here: https://archive.org/details/comics.
  • Alternative, any compressed folder (zip, rar, tar, etc) with a few images will also do the job.

Credits

About

An open source web-based comic book reader.

License:MIT License


Languages

Language:JavaScript 86.3%Language:CSS 13.7%