Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
react-pdf-viewer-component
Advanced tools
npm install react-pdf-viewer-component
or yarn add react-pdf-viewer-component
.import PdfViewer from 'react-pdf-viewer-component'
.<Document file="..." />
. file
can be a URL, base64 content, Uint8Array, and more.A minimal demo page can be found in sample
directory.
CSR demo is also available! SSR(next.js) demo is also available!
Here's an example of basic usage (CRA):
import React, { useState } from 'react';
import PdfViewer from 'react-pdf-viewer-component'
import FilePdf from './sample.pdf'
// add styleing
import 'react-pdf-viewer-component/dist/style.css'
function MyApp() {
const [file, setFile] = useState(FilePdf);
return (
<div>
<PdfViewer file={file} className="container" />
</div>
);
}
Adding style.css in file '_app.js' from pdf-viewer-component to get styling component :
import '../styles/globals.css'
// add this
import 'react-pdf-viewer-component/dist/style.css'
export default function App({ Component, pageProps }) {
return <Component {...pageProps} />
}
exclude ssr for pdf to optimize and effective resource in server
import dynamic from "next/dynamic";
// set this and wrapping react-pdf-viewer-component
const PDFViewer = dynamic(() => import("../components/pdf-viewer"), {
ssr: false,
});
export default function Home() {
return (
<>
<PDFViewer/>
</>
)
}
FAQs
## tl;dr
The npm package react-pdf-viewer-component receives a total of 11 weekly downloads. As such, react-pdf-viewer-component popularity was classified as not popular.
We found that react-pdf-viewer-component 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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.