GitHub
github.com › react-pdf-viewer › react-pdf-viewer
GitHub - react-pdf-viewer/react-pdf-viewer: A React component to view a PDF document · GitHub
A React component to view a PDF document. Contribute to react-pdf-viewer/react-pdf-viewer development by creating an account on GitHub.
Starred by 2.6K users
Forked by 296 users
Languages TypeScript 97.5% | CSS 2.5%
GitHub
github.com › wojtekmaj › react-pdf
GitHub - wojtekmaj/react-pdf: Display PDFs in your React app as easily as if they were images. · GitHub
Starred by 11K users
Forked by 1K users
Languages TypeScript 94.5% | CSS 5.4% | HTML 0.1%
Videos
49:02
The Most Advanced React PDF Viewer - YouTube
14:28
This React PDF-Viewer Component Is Amazing! - YouTube
09:06
How to View Pdf in React using React PDF || React PDF Viewer || ...
12:11
How to view Pdf in React JS using react-pdf || Create customized ...
04:35
React JS PDF Viewer Easy and Quick Example - YouTube
Build a Lightweight PDF Viewer in Browser Using React ...
GitHub
github.com › intelllex › react-pdf
GitHub - intelllex/react-pdf: Simple and fancy PDF Viewer based on pdf.js 📄⚡️
Simple and fancy PDF Viewer based on pdf.js 📄⚡️. Contribute to intelllex/react-pdf development by creating an account on GitHub.
Starred by 148 users
Forked by 37 users
Languages JavaScript 85.3% | SCSS 14.7%
GitHub
github.com › ZEISS › react-view-pdf
GitHub - ZEISS/react-view-pdf: A simple and powerful PDF Viewer library for React.js · GitHub
Starred by 111 users
Forked by 5 users
Languages TypeScript 97.8% | JavaScript 2.2%
GitHub
github.com › pdf-viewer-react › react-pdf
GitHub - react-pdf-kit/react-pdf-viewer: React PDF Kit is a feature-rich React PDF Viewer component. Powered by PDF.js, it offers seamless integration with PDF documents. With customizable toolbars, search, and smooth navigation, it’s designed to deliver a professional PDF viewing experience.
React PDF Kit is a feature-rich React PDF Viewer component. Powered by PDF.js, it offers seamless integration with PDF documents. With customizable toolbars, search, and smooth navigation, it’s designed to deliver a professional PDF viewing ...
Starred by 29 users
Forked by 3 users
Languages CSS
GitHub
github.com › react-pdf-viewer › react-pdf-viewer › releases
Releases · react-pdf-viewer/react-pdf-viewer
A React component to view a PDF document. Contribute to react-pdf-viewer/react-pdf-viewer development by creating an account on GitHub.
Author react-pdf-viewer
GitHub
github.com › ansu5555 › pdf-viewer-reactjs
GitHub - ansu5555/pdf-viewer-reactjs: A simple PDF viewer for React js
A simple PDF viewer for React js. Contribute to ansu5555/pdf-viewer-reactjs development by creating an account on GitHub.
Starred by 145 users
Forked by 67 users
Languages JavaScript 96.7% | HTML 1.7% | CSS 1.5% | Shell 0.1% | JavaScript 96.7% | HTML 1.7% | CSS 1.5% | Shell 0.1%
GitHub
github.com › react-pdf-viewer › examples
GitHub - react-pdf-viewer/examples: React PDF viewer examples
Starred by 60 users
Forked by 35 users
Languages TypeScript 99.8% | TypeScript 99.8%
GitHub
github.com › react-pdf-dev › react-pdf-viewer
GitHub - react-pdf-dev/react-pdf-viewer: React PDF is a feature-rich React PDF viewer component. Powered by PDF.js, it offers seamless integration with PDF documents. With customizable toolbars, search, and smooth navigation, it’s designed to deliver a professional PDF viewing experience.
React PDF is a feature-rich React PDF viewer component. Powered by PDF.js, it offers seamless integration with PDF documents. With customizable toolbars, search, and smooth navigation, it’s designed to deliver a professional PDF viewing experience.
Starred by 25 users
Forked by 2 users
Languages CSS 100.0% | CSS 100.0%
GitHub
github.com › VicStor › react-pdf-viewer
GitHub - VicStor/react-pdf-viewer: React viewer for pdf documents
import React, { Component } from 'react'; import PdfViewer from 'react-pdf-viewer'; class App extends Component { constructor() { super(); this.state = { loadingProgress: 0, }; } getViewer = (pdfViewer) => { this.pdfViewer = pdfViewer; pdfViewer.onLoadingProgress((progress) => { const loadingProgress = Math.floor((100 * progress.loaded) / progress.total); this.setState({ loadingProgress }); }); } render() { return ( <App> <PdfViewer getPdfViewer={this.getViewer} docLink='link to pdfDocument' /> </App> ); } }
Starred by 4 users
Forked by 2 users
Languages JavaScript 94.9% | HTML 2.6% | CSS 2.5% | JavaScript 94.9% | HTML 2.6% | CSS 2.5%
GitHub
github.com › diegomura › react-pdf
GitHub - diegomura/react-pdf: 📄 Create PDF files using React
import React from 'react'; import { Document, Page, Text, View, StyleSheet } from '@react-pdf/renderer'; // Create styles const styles = StyleSheet.create({ page: { flexDirection: 'row', backgroundColor: '#E4E4E4', }, section: { margin: 10, padding: 10, flexGrow: 1, }, }); // Create Document Component const MyDocument = () => ( <Document> <Page size="A4" style={styles.page}> <View style={styles.section}> <Text>Section #1</Text> </View> <View style={styles.section}> <Text>Section #2</Text> </View> </Page> </Document> );
Starred by 16.5K users
Forked by 1.3K users
Languages TypeScript 83.6% | JavaScript 16.4%
GitHub
github.com › MGrin › mgr-pdf-viewer-react
GitHub - MGrin/mgr-pdf-viewer-react: React PDF Viewer component
import React from 'react'; import PDFViewer from 'mgr-pdf-viewer-react'; const ExamplePDFViewer = () => { return (<PDFViewer document={{ url: 'https://arxiv.org/pdf/quant-ph/0410100.pdf' }} />); } export default ExamplePDFViewer
Starred by 75 users
Forked by 24 users
Languages JavaScript 92.4% | HTML 4.9% | CSS 2.7% | JavaScript 92.4% | HTML 4.9% | CSS 2.7%
GitHub
github.com › kemy971 › react-pdf-reader
GitHub - kemy971/react-pdf-reader: PDF Reader - React JS Component
PDF Reader - React JS Component. Contribute to kemy971/react-pdf-reader development by creating an account on GitHub.
Starred by 10 users
Forked by 3 users
Languages JavaScript 79.1% | CSS 17.5% | HTML 3.4% | JavaScript 79.1% | CSS 17.5% | HTML 3.4%
GitHub
github.com › cdx111 › react-pdf-simple-viewer
GitHub - cdx111/react-pdf-simple-viewer
import { Document, Page } from 'react-pdf-simple-viewer'; import { useState } from 'react'; const App = () => { const [pages, setPages] = useState<number[]>([]); return ( <div> <Document URL="http://localhost:1234/123.pdf" onSuccess={async PDF => { const { numPages } = PDF; setPages( Array.from({ length: numPages }) .fill(0) .map((val, index) => index + 1) ); }} > {pages.map(value => { return <Page index={value} key={value} width={857} scale={1}></Page>; })} </Document> </div> ); }; ReactDOM.render(<App />, document.getElementById('root'));
Author cdx111
GitHub
github.com › nyazkhan › react-pdf-viewer
GitHub - nyazkhan/react-pdf-viewer
import React, { useState, useCallback } from 'react' import { PDFViewer, type PDFHighlightType, type PDFDocumentProxy } from '@nyazkhan/react-pdf-viewer' function PDFWithHighlighting() { const [highlights, setHighlights] = useState<PDFHighlightType[]>([]) const [pdfDocument, setPdfDocument] = useState<PDFDocumentProxy | null>(null) const createHighlight = useCallback(async (searchText: string) => { if (!pdfDocument) return const newHighlights: PDFHighlightType[] = [] for (let pageNum = 1; pageNum <= pdfDocument.numPages; pageNum++) { const page = await pdfDocument.getPage(pageNum) const textContent = await page.getTextContent() // Your highlighting logic here // ...
Author nyazkhan
GitHub
github.com › LogicamenteInfo › react-pdf-viewer
GitHub - LogicamenteInfo/react-pdf-viewer: A React PDF viewer component, bootstrap compatible, with controls based on PDF.js
November 12, 2022 - import React from 'react'; import PDFViewer from '@logicamente.info/react-pdf-viewer'; const ExamplePDFViewer = () => { return ( <PDFViewer document={{ url: 'https://arxiv.org/pdf/quant-ph/0410100.pdf', }} /> ); } export default ExamplePDFViewer;
Author LogicamenteInfo
GitHub
github.com › react-pdf-viewer › react-pdf-viewer › issues
Issues · react-pdf-viewer/react-pdf-viewer
A React component to view a PDF document. Contribute to react-pdf-viewer/react-pdf-viewer development by creating an account on GitHub.
Author react-pdf-viewer