Papermark — Open Source Document Sharing Analytics
Papermark is an open-source DocSend alternative for sharing pitch decks and documents with page-by-page analytics, custom domains, and data rooms.
Staging seguro para este activo
Este activo primero queda en staging. El prompt copiado pide inspeccionar los archivos staged antes de activar scripts, config MCP o config global.
npx -y tokrepo@latest install f96288dc-3474-11f1-9bc6-00163e2b0d79 --target codexPrimero deja archivos en staging; la activación requiere revisar el README y el plan staged.
What it is
Papermark is an open-source alternative to DocSend for sharing pitch decks, proposals, and documents with detailed analytics. It provides page-by-page viewing data, custom branding, email capture, password protection, and data rooms for due diligence.
Papermark targets startup founders sharing pitch decks with investors, sales teams sharing proposals, and anyone who needs to track how recipients engage with shared documents.
How it saves time or tokens
Papermark replaces the guesswork of email attachments. Instead of sending a PDF and wondering if the recipient read it, Papermark shows exactly which pages were viewed, how long each page was viewed, and when the document was accessed. This data helps founders prioritize investor follow-ups and sales teams identify engaged prospects. Self-hosting gives you full control over document data without paying DocSend's per-seat pricing.
How to use
- Clone and run locally:
git clone https://github.com/mfts/papermark.git
cd papermark
cp .env.example .env
pnpm install
pnpm dev
- Open http://localhost:3000, upload a document, and generate a trackable sharing link.
- Share the link and monitor viewing analytics in the dashboard: page views, time per page, viewer email, and access timestamps.
Example
Papermark API for programmatic document management:
// Upload and share a document via API
const response = await fetch('https://your-papermark.com/api/documents', {
method: 'POST',
headers: {
'Authorization': 'Bearer your-api-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'Series A Pitch Deck',
url: 'https://storage.example.com/pitch-deck.pdf',
settings: {
emailProtected: true,
allowDownload: false,
expiresAt: '2026-05-01T00:00:00Z'
}
})
});
const doc = await response.json();
console.log(`Share link: ${doc.links[0].url}`);
// Recipients must enter email to view
// You see page-by-page analytics in dashboard
Related on TokRepo
- Self-hosted tools — More self-hostable productivity tools on TokRepo.
- Content tools — Browse content management and sharing tools.
Common pitfalls
- Not enabling email capture means you see view counts but not who viewed the document. Enable email protection for investor and sales documents.
- Sharing large PDFs without optimizing file size causes slow loading for viewers. Compress documents before uploading.
- Running Papermark in production without proper authentication exposes your documents. Configure authentication and environment variables before deploying publicly.
Preguntas frecuentes
Papermark tracks page-by-page view duration, total time spent, number of visits, viewer email (if email protection is enabled), access timestamps, and device information. You can see exactly which pages each viewer spent the most time on.
Yes. Papermark is open source and can be self-hosted with Docker or deployed to Vercel. You get full control over your documents and analytics data without paying per-seat SaaS pricing.
Papermark provides similar features to DocSend (document sharing, analytics, email capture, custom domains) but is open source and self-hostable. DocSend charges per seat and is a closed-source SaaS product.
Yes. Papermark supports custom domains for sharing links, so your documents appear under your own brand rather than a Papermark URL.
Yes. Papermark includes data room functionality for due diligence, where you can organize multiple documents with viewer permissions and access controls.
Referencias (3)
- Papermark GitHub— Papermark is an open-source DocSend alternative
- Papermark Docs— Papermark documentation and API
- Papermark Blog— Document analytics best practices for sales
Relacionados en TokRepo
Fuente y agradecimientos
- GitHub: mfts/papermark — 8.1K+ ⭐
- Website: papermark.io
- Docs: papermark.io/docs
Discusión
Activos relacionados
Documenso — Open Source Document Signing Platform
Documenso is an open-source DocuSign alternative for self-hosted document signing with PDF e-signatures, audit trails, and Next.js stack.
Ghostfolio — Open Source Wealth Management & Portfolio Tracker
Ghostfolio is an open-source personal finance dashboard for tracking stocks, ETFs, crypto, and other investments with real-time market data and performance analytics.
Plane — Open-Source AI Project Management
Open-source Jira/Linear alternative with AI-powered pages. Issues, sprints, modules, roadmaps, and real-time analytics. Self-hostable via Docker. AGPL-3.0, 47,500+ stars.
NocoDB — Open Source No-Code Database Platform
NocoDB turns any SQL database into a smart spreadsheet with REST APIs. Open-source Airtable alternative with views, automations, and team collaboration.