🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@project-sunbird/sunbird-epub-player-v8

Package Overview
Dependencies
Maintainers
7
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@project-sunbird/sunbird-epub-player-v8

Player for playing Epub contents for sunbird applications

latest
npmnpm
Version
4.0.9
Version published
Maintainers
7
Created
Source

Sunbird Epub Player

Player for playing Epub contents for sunbird applications

Prerequisite

Node version > 12

Usage

npm i @project-sunbird/sunbird-epub-player-v8

Add the module to the your player root module

import { SunbirdEpubPlayerModule } from '@project-sunbird/sunbird-epub-player-v8';

@NgModule({
  ...
  imports: [
    ...,
    SunbirdEpubPlayerModule
  ]
})

add the assets, scripts and styles in angular.json file

....
 "assets": [
              "src/favicon.ico",
              "src/assets",
              {
                "glob": "**/*",
                "input": "node_modules/@project-sunbird/sunbird-epub-player-v8/lib/assets/",
                "output": "/assets/"
              }
],
  "scripts": [
  ...
    "./node_modules/epubjs/dist/epub.js",
    "node_modules/@project-sunbird/telemetry-sdk/index.js"
    ....
  ],
  
"styles": [
...
"./node_modules/@project-sunbird/sb-styles/assets/_styles.scss",
"src/styles.css"
....
],
...

add peer dependecies of the player as dependecies in your project

add the component selector in your component like below


    <sunbird-epub-player [playerConfig]="epubPlayerConfig" 
                         (playerEvent)="playerEventHandler($event)"
                         (telemetryEvent)="telemetryEvent($event)">
    </sunbird-epub-player>

Still facing issues please refer the demo project in this repo as example

Development

check out this repo with latest release version branch

cd to {repo_path} in terminal

run sh setup.sh

above script installs the dependecies and link the epub player library project to demo app

if you do any changes in library project run to get latest changes in demo app

npm run build-lib-link

once above command completed run npm run start which will run the player in demo app at http://localhost:4200

References

http://epubjs.org/documentation/0.3/#epubjs

Keywords

sunbird

FAQs

Package last updated on 20 Jul 2021

Did you know?

Socket

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.

Install

Related posts