A simple tool that makes arXiv papers instantly available in LLM-friendly formats by just changing the URL.
- Find a paper on arXiv:
https://arxiv.org/abs/2502.10248
- Change the URL to:
https://arxiv-txt.org/abs/2502.10248
- copy an LLM-optimized version
See example use-cases in the /examples/ directory.
This project is built with Next.js and Tailwind CSS.
- Node.js (16.x or later)
- npm or yarn
# Clone the repository
git clone https://github.com/yourusername/arxiv-txt.git
cd arxiv-txt
# Install dependencies
npm install
npm run dev
This runs the app in development mode. Open http://localhost:3000 to view it in your browser.
npm run build
The site is configured for easy deployment on Vercel with the included vercel.json
configuration.
# Install Vercel CLI
npm i -g vercel
# Deploy
vercel
- Frontend: Next.js with App Router, React, and Tailwind CSS
- API Proxy: Next.js API routes handle CORS and rate limiting
- Caching: Response caching via Next.js and HTTP headers
- Deployment: Vercel with custom configuration
This is a Next.js project bootstrapped with create-next-app
.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load Geist, a new font family for Vercel.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.