惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
云风的 BLOG
云风的 BLOG
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Recent Announcements
Recent Announcements
IT之家
IT之家
Google DeepMind News
Google DeepMind News
罗磊的独立博客
爱范儿
爱范儿
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
U
Unit 42
MongoDB | Blog
MongoDB | Blog
S
SegmentFault 最新的问题
B
Blog
博客园 - 叶小钗
月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Got Tired of Messy Bookmark Managers, So I Built My Own
NAGARAMPALLL · 2026-05-27 · via DEV Community

A keyboard-driven, canvas-style bookmark manager built with React, TypeScript, Zustand, DnD-kit, and Chrome Extension APIs.

Why I Built Bookmrk

Most bookmark managers started feeling either:

  • too cluttered
  • too cloud-dependent
  • too slow for rapid workflows
  • or overloaded with features I never actually used

I wanted something that felt:

  • fast
  • local-first
  • keyboard-centric
  • visually organized
  • open-source
  • and developer-friendly

So I built Bookmrk.

A lightweight bookmark manager with:

  • instant quick-save shortcuts
  • canvas-style organization
  • drag-and-drop boards
  • multiple visual themes
  • Chrome bookmark import
  • export/import support
  • and a workflow designed for people who live in the browser.

Introducing Bookmrk

Bookmrk is an open-source bookmark manager built using React, TypeScript, Vite, Zustand, DnD-kit and Tailwind CSS.

GitHub Repository:
https://github.com/sarvan-2187/Bookmrk

Live Website:
https://sarvan-2187.github.io/bookmrk-web/

The project focuses heavily on:

  • local-first workflows
  • keyboard productivity
  • clean information architecture
  • and fast interaction patterns.

The Core Idea

Instead of treating bookmarks like an endless vertical list, Bookmrk organizes them into:

  • Pages
  • Boards
  • Bookmark Cards

Think of it like:

Trello + browser bookmarks + keyboard-first workflows.

The interface uses a canvas-style 4-column board system where boards can be freely rearranged.

This makes large bookmark collections significantly easier to navigate visually.


Features

Quick Save Workflow

One of the main ideas behind Bookmrk was reducing friction.

Instead of:

  • opening a bookmark manager
  • creating folders
  • manually saving links

You can simply press:

Ctrl/Cmd + Shift + Y

Enter fullscreen mode Exit fullscreen mode

And the current page instantly gets saved into a Quick Saves board.


Keyboard-Driven Productivity

Bookmrk includes several keyboard shortcuts designed for power users.

Shortcut Action
Ctrl/Cmd + Shift + Y Quick Save
S Toggle Sidebar
P Create New Page
I Open Settings
X Toggle Privacy Blur
/ Open Search
Ctrl/Cmd + K Toolbar Search

The goal was to make navigation feel closer to tools like:

  • Raycast
  • Arc
  • Linear
  • VSCode

rather than traditional bookmark apps.


Canvas-Style Organization

One of my favorite parts of the project is the board system.

Boards can:

  • move across columns
  • reorder dynamically
  • act as visual bookmark groups
  • support drag-and-drop placement

Unlike traditional nested folders, this layout provides:

  • spatial memory
  • visual grouping
  • faster scanning
  • less cognitive overload

Screenshots

Home Layout

Home Layout

Home — 4 column grid

Modern 4-column canvas organization system


Quick Save Modal

Quick Save Modal

Fast keyboard-driven bookmark capture


Board Settings

Board Settings Modal

Board management and organization controls


Multiple Built-In Themes

Bookmrk currently ships with 3 themes:

  • Discord
  • Simple
  • NeoBrutalist

Each theme changes the entire visual feel of the application.


Discord Theme

Discord Theme


Simple Theme

Simple Theme


NeoBrutalist Theme

NeoBrutalist Theme


Architecture Decisions

I wanted the architecture to remain:

  • modular
  • lightweight
  • maintainable
  • extension-friendly

State Management - Zustand

I used Zustand because:

  • minimal boilerplate
  • simple global state
  • easier mental model
  • excellent developer experience

The store handles:

  • pages
  • boards
  • bookmarks
  • themes
  • settings
  • modals
  • toast notifications

without requiring Redux-level complexity.


Drag & Drop - DnD-kit

The canvas organization system uses:

@dnd-kit/core
@dnd-kit/sortable

This enabled:

  • fluid drag interactions
  • board insertion logic
  • cross-column movement
  • reorder animations

One challenge here was:

supporting insertion into empty columns while preserving intuitive positioning behavior.


Storage Strategy - Local First

Bookmrk uses:

  • Chrome extension storage APIs when available
  • localStorage fallback otherwise

This allows:

  • browser-extension support
  • standalone web usage
  • portability
  • offline-first behavior

I intentionally avoided making cloud sync mandatory.


Technical Challenges

Some interesting engineering problems during development:

1. Chrome Import Deduplication

When importing Chrome bookmarks:

  • duplicate imports needed prevention
  • but users also needed re-import support

Solution:

  • persisted import flags
  • automatic reset when imported boards are deleted

2. Dragging Across Empty Columns

Traditional DnD systems often assume populated containers.

Supporting:

  • empty lanes
  • dynamic insertion
  • cross-column sorting

required additional placement logic and collision handling.


3. Theme Consistency

Supporting:

  • light mode
  • dark mode
  • NeoBrutalist mode

while keeping:

  • modal readability
  • accessibility
  • contrast consistency

became surprisingly complex.


Privacy & Local-First Philosophy

A major design principle behind Bookmrk is:

Your bookmarks should belong to you.

By default:

  • data stays local
  • no forced accounts
  • no mandatory cloud sync
  • no external tracking layer

Export/import support also makes the data portable.


Future Roadmap

Some things I want to explore next:

  • browser sync
  • Firefox support
  • command palette improvements
  • AI-assisted bookmark organization
  • advanced search indexing
  • bookmark tagging
  • collaborative boards
  • plugin system
  • markdown support
  • smarter import/export tools

Open Source & Contributions

Bookmrk is fully open-source and contributions are welcome.

If you're interested in:

  • frontend engineering
  • Chrome extension development
  • UX systems
  • state management
  • accessibility
  • productivity tooling

feel free to contribute.

GitHub:
https://github.com/sarvan-2187/Bookmrk


Final Thoughts

Bookmrk started as:

“I just want a faster way to manage bookmarks.”

But it slowly evolved into:

  • a productivity system
  • a browser workflow tool
  • a design experiment
  • and a deeper exploration of local-first UX.

There’s still a lot to improve, but the project has already taught me a lot about:

  • state architecture
  • interaction design
  • drag-and-drop systems
  • extension APIs
  • and developer-focused product design.

If the project sounds interesting:

  • try it out
  • open issues
  • contribute
  • or drop feedback.

And if you like the idea, consider starring the repo ⭐


Links

GitHub:
https://github.com/sarvan-2187/Bookmrk

Live Demo:
https://sarvan-2187.github.io/bookmrk-web/

opensource #webdev #react #typescript #productivity #chrome #javascript #github