Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@certifaction/vue-pdf-viewer
Advanced tools
PDF-Viewer for Vue.js based on Mozillas PDF.js
npm install @certifaction/vue-pdf-viewer
# or if using yarn
yarn add @certifaction/vue-pdf-viewer
import PDFViewer from '@certifaction/vue-pdf-viewer'
new Vue({
components: {
PDFViewer
}
})
Example code how to load the component translations:
import merge from 'lodash.merge'
import pdfViewerEN from '@certifaction/vue-pdf-viewer/src/locales/en.json'
import pdfViewerDE from '@certifaction/vue-pdf-viewer/src/locales/de.json'
import pdfViewerFR from '@certifaction/vue-pdf-viewer/src/locales/fr.json'
import pdfViewerIT from '@certifaction/vue-pdf-viewer/src/locales/it.json'
function loadLocaleMessages() {
// Load your messages
}
const messages = merge({
en: pdfViewerEN,
de: pdfViewerDE,
fr: pdfViewerFR,
it: pdfViewerIT
}, loadLocaleMessages())
new VueI18n({
messages
})
$pdf-viewer-asset-base-path: "/node_modules/@certifaction/pdfjs/dist/";
@import "@certifaction/vue-pdf-viewer/src/style/index";
Type: string
| Required: false
(either pdfjsWorkerSrc
or pdfjsWorkerInstance
is required)
URL to the pdfjs.worker.js or pdfjs.worker.min.js.
Type: Worker
| Required: false
(either pdfjsWorkerInstance
or pdfjsWorkerSrc
is required)
When the worker is loaded with the Webpack worker-loader, you can also pass the instance of the worker.
vue.config.js example:
chainWebpack: config => {
config.module
.rule('js')
.exclude.add(/\.worker\.js$/)
config.module
.rule('worker')
.test(/\.worker(\.min)?\.js$/)
.use('worker-loader')
.loader('worker-loader')
.options({ filename: 'js/[name].[hash:8].js' })
.end()
}
Usage example:
<template>
<div class="test">
<PDFViewer :pdfjs-worker-instance="pdfjsWorker"/>
</div>
</template>
<script>
import PdfjsWorker from '@certifaction/pdfjs/dist/pdfjs.worker.min'
export default {
name: 'Test',
components: {
PDFViewer
},
data() {
return {
pdfjsWorker: new PdfjsWorker()
}
}
}
</script>
Type: string
| Required: true
Pass the path where the cmaps can be accessed.
vue.config.js example to copy the cmaps to the dist folder:
chainWebpack: config => {
config.plugin('copy')
.tap(args => {
args[0].push({
from: '@certifaction/pdfjs/dist/cmaps',
to: 'pdf/cmaps',
toType: 'dir',
context: './node_modules'
})
return args
})
}
Type: string
| Required: true
URL of the PDF document which should be displayed.
Type: Object
| Required: false
| Default: {}
These options are passed to the constructor of PDFViewer. Possible options are the PDFViewerOptions from https://github.com/mozilla/pdf.js/web/base_viewer.js.
container
and eventBus
are always overridden by the component.
Released by Certifaction AG
FAQs
PDF-Viewer for Vue.js based on Mozillas PDF.js
We found that @certifaction/vue-pdf-viewer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.