Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@dbp-toolkit/pdf-viewer
Advanced tools
This component is a wrapper around the pdf.js library to display PDF files in the browser.
You can install this component via npm:
npm i @dbp-toolkit/pdf-viewer
<dbp-pdf-viewer></dbp-pdf-viewer>
<script type="module" src="node_modules/@dbp-toolkit/pdf-viewer/dist/dbp-pdf-viewer.js"></script>
Or directly via CDN:
<dbp-pdf-viewer></dbp-pdf-viewer>
<script type="module" src="https://unpkg.com/@dbp-toolkit/pdf-viewer@0.0.7/dist/dbp-pdf-viewer.js"></script>
lang
(optional, default: de
): set to de
or en
for German or English
<dbp-pdf-viewer lang="de" client-id="my-client-id"></dbp-pdf-viewer>
auto-resize
(optional, default: cover
)
contain
to resize the viewed PDF to fit the container horizontally and verticallycover
to resize the viewed PDF to fit the container horizontally only,
vertically the PDF can exceed the container<dbp-pdf-viewer auto-resize="contain"></dbp-pdf-viewer>
showPDF(file: File)
: Opens a PDF file. The file must be a File
object.
document.querySelector('dbp-pdf-viewer').showPDF(file);
You can use the showPDF
method to open a PDF file. This method accepts a File
object as parameter.
<input @change=${this.openFile} type="file" />
<dbp-pdf-viewer lang="en"></dbp-pdf-viewer>
<script type="module" src="https://unpkg.com/@dbp-toolkit/pdf-viewer@0.0.7/dist/dbp-pdf-viewer.js"></script>
<script>
document.querySelector('input').addEventListener('change', function(e) {
if (e.target.files[0]) {
let file = e.target.files[0];
console.log('You selected ' + file.name);
document.querySelector('dbp-pdf-viewer').showPDF(file);
}
});
</script>
See example/index.html for a working example.
# get the source
git clone git@github.com:digital-blueprint/toolkit.git
cd toolkit/packages/pdf-viewer
# install dependencies
npm install
# constantly build dist/bundle.js and run a local web-server on port 8002
npm run watch
# run tests
npm test
# build local packages in dist directory
npm run build
Jump to http://localhost:8002 and you should get a demo page.
FAQs
PDF Viewer Web Component
We found that @dbp-toolkit/pdf-viewer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.