A web application for managing your Instapaper bookmarks with a clean interface and keyboard shortcuts. The nice thing is this stores past the 500 article limit you normally get back from the API
- View all Instapaper bookmarks in a list
- Read bookmark content directly in the app
- Archive bookmarks
- Star/unstar bookmarks
- Track reading progress
- Keyboard navigation
- SQLite storage for offline access
- Install dependencies:
npm install
- Create a
.env
file with your Instapaper credentials:
INSTAPAPER_CLIENT_ID=your_client_id
INSTAPAPER_CLIENT_SECRET=your_client_secret
INSTAPAPER_EMAIL=your_email
INSTAPAPER_PASSWORD=your_password
- Create SQLite database schema:
CREATE TABLE articles (
title TEXT,
url TEXT,
text TEXT,
hash TEXT,
bookmark_id INTEGER PRIMARY KEY,
time INTEGER,
progress_timestamp INTEGER,
progress REAL,
archived BOOLEAN
);
- Populate DB
node load-articles.js
Start the server:
node index.js
The app will be available at http://localhost:3000
j
- Move selection downk
- Move selection upl
- Toggle starEnter
- View article textBackspace
- Archive article0
- Jump to topr
- Select random article
- Backend: Express.js server with SQLite database
- Frontend: Svelte application
- API: Instapaper SDK for Node.js
- Initial load syncs bookmarks from Instapaper to local SQLite database
- Frontend communicates with Express backend for data operations
- Changes are persisted to both local database and Instapaper through the API