
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
pdf-viewer-vue
Advanced tools
PDF viewer component for Vue 2 and Vue 3
This package is compatible with both Vue 2 and Vue 3. The default exported build is for Vue 3, but dist
directory also contains a build for Vue 2 (dist/vue2-pdf-viewer.js
). See the example in Usage section.
Depending on the environment, the package can be installed in one of the following ways:
npm install pdf-viewer-vue
yarn add pdf-viewer-vue
<script src="https://unpkg.com/pdf-viewer-vue"></script>
<template>
<div>
<h1>File</h1>
<PDFViewer
:source="url"
style="height: 100vh; width: 100vw"
@download="handleDownload"
/>
<h1>Base64</h1>
<PDFViewer
:source="base64"
style="height: 100vh; width: 100vw"
@download="handleDownload"
/>
</div>
</template>
<script>
import PDFViewer from 'pdf-viewer-vue'
// OR THE FOLLOWING IMPORT FOR VUE 2
// import PDFViewer from 'pdf-viewer-vue/dist/vue2-pdf-viewer'
export default {
components: {
PDFViewer,
},
data() {
return {
url: '<PDF_URL>',
base64: '<BASE64_ENCODED_PDF>',
}
},
}
</script>
Name | Type | Accepted values | Description |
---|---|---|---|
source | string | document URL or Base64 | source of document |
controls | string[] | [ 'download', 'print', 'rotate', 'zoom', 'catalog', 'switchPage', ] | visible controls |
loading-text | string | - | loading text |
rendering-text | string | - | rendering text |
settings | { defaultZoom: number } | - | default settings |
Name | Value | Description |
---|---|---|
download | {source: string; filename: string;} | pdf file base info |
loaded | {total: number} | document load completed |
loading-failed | Error | failed to load document |
rendered | - | finished rendering the document |
rendering-failed | Error | failed to render document |
TODO: CodeSandbox or JSFiddle
MIT License. Please see LICENSE file for more information.
FAQs
PDF viewer component for Vue 2 and Vue 3
The npm package pdf-viewer-vue receives a total of 1,029 weekly downloads. As such, pdf-viewer-vue popularity was classified as popular.
We found that pdf-viewer-vue demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.