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

推荐订阅源

Recent Announcements
Recent Announcements
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
V
V2EX
Microsoft Security Blog
Microsoft Security Blog
V
Visual Studio Blog
A
About on SuperTechFans
博客园_首页
L
LangChain Blog
量子位
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Jina AI
Jina AI
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium

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
Your Projects, One Jump Away with JustJump
Andrew · 2026-04-23 · via DEV Community

Andrew

You open a terminal, and before you can do any actual work, you type something like:

cd ~/projects/foo/

Enter fullscreen mode Exit fullscreen mode

Or if you work with WordPress:

cd ~/projects/client-site/wp-content/themes/my-custom-theme/
cd ../../plugins/my-custom-plugin/

Enter fullscreen mode Exit fullscreen mode

Or Drupal:

cd ~/projects/drupal-site/web/modules/custom/my_feature_module/
cd ../../../themes/custom/my_theme/

Enter fullscreen mode Exit fullscreen mode

Every. Single. Time.

It does not get easier with practice. It just gets annoying. And the worst part? You already know where everything is. Your brain has the map. The shell just refuses to use it.

That frustration is exactly why I built JustJump — a small Go CLI that lets you register the directories that matter and jump to them interactively, with two keystrokes.


The Real Problem

I work across a lot of different environments: monorepos, microservices, client projects, and DDEV containers. Deep directory trees are everywhere. Shell aliases helped me for a while, but they get stale fast — you rename a folder, and suddenly half your aliases are broken. Bookmark plugins add yet another thing to configure and maintain.

I wanted something that stayed out of my way. And yes — I know about zoxide and fzf.

I tried both. zoxide is essentially a flash bookmark manager: it learns from your history and guesses where you want to go.

fzf is a powerful fuzzy finder, but at its core it's an old-fashioned indexer and filesystem scanner — it searches what exists, not what you've decided matters. So I designed JustJump around a simple two-level model:

Top-level project directories I register once. For example, ~/projects/myproject/.

  • Local jump points — subdirectories inside a project, declared in a .justjump.yaml file. For example, backend/, frontend/.

That's it. Two levels, two commands, zero magic.

Running jj inside a registered project opens an interactive picker for that project's jump points. Running jj -G lets me switch between projects. Pick, Enter, done.

And since .justjump.yaml is just a file sitting in the project root, you can commit it to git. Every teammate who clones the repo gets the same jump points out of the box — no individual setup, no "how do you navigate this codebase" onboarding questions.


Using It Day to Day

Get It Running

Install without sudo (binary goes to ~/.local/bin):

curl -sSf https://rtech91.github.io/justjump/install.sh | bash

Enter fullscreen mode Exit fullscreen mode

Or build from source if you prefer:

make build-release
make install

Enter fullscreen mode Exit fullscreen mode

Then add the shell integration to your profile. Copy the right .justjumprc from misc/rc/bash/ or misc/rc/zsh/ into your home directory, then source it:

[ -f ~/.justjumprc ] && source ~/.justjumprc

Enter fullscreen mode Exit fullscreen mode

Register a Project

Go to any project root and run:

cd ~/projects/myproject
jj add -G
# -> Global jump root added: myproject -> ~/projects/myproject

Enter fullscreen mode Exit fullscreen mode

Define Your Jump Points

Drop a .justjump.yaml in the project root:

jumppoints:
  - backend/
  - frontend/
  - infra/terraform/

Enter fullscreen mode Exit fullscreen mode

You can also cd into any subdirectory and run jj add (no -G) to register that path directly.

Jump

Inside a registered project:

jj
# -> interactive picker with local jump points

Enter fullscreen mode Exit fullscreen mode

From anywhere, to switch projects:

jj -G
# -> interactive picker with global roots

Enter fullscreen mode Exit fullscreen mode

Keep Things Clean

Remove what's no longer relevant:

jj remove        # removes current dir's local jump point
jj remove -G     # removes the current project root registration

Enter fullscreen mode Exit fullscreen mode


DDEV Integration

If you use DDEV, you know the pain of container paths. /var/www/html/web/modules/custom/mymodule is not something you want to type repeatedly.

Since container paths differ from host paths, registration has to happen inside the container. Here's my setup in .ddev/config.yaml:

webimage_extra_packages: [golang]
hooks:
  post-start:
    - exec: curl -sSf https://rtech91.github.io/justjump/install.sh | bash
    - exec: echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc

Enter fullscreen mode Exit fullscreen mode

After ddev start or ddev restart:

ddev ssh
cd /var/www/html
jj add -G

Enter fullscreen mode Exit fullscreen mode

Then add .justjump.yaml at the container project root:

jumppoints:
  - web/modules/custom/
  - web/themes/custom/
  - config/sync/

Enter fullscreen mode Exit fullscreen mode

From that point on, jj inside the container gives you instant navigation. If you use Zsh inside DDEV, also append to .zshrc:

hooks:
  post-start:
    - exec: echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc

Enter fullscreen mode Exit fullscreen mode


A Few Design Decisions I'm Happy With

No database, no daemon. Everything lives in plain files under ~/.config/justjump/. Nothing runs in the background. You can audit, backup, or delete the whole thing with standard shell tools.

No silent stale paths. JustJump skips missing entries and warns you. jj verify makes the health check explicit when you want it.

Consistent mnemonic flags. The --global / -G flag works the same way across add, remove, verify, and jumping. Learn it once, use it everywhere.


Wrapping Up

JustJump is not trying to be clever. It is just removing the friction between knowing where you want to go and actually getting there.

Register a project root once. Define meaningful local jump points. Type jj, pick, Enter. That's the whole thing — and it works the same way on your laptop and inside a DDEV container.

The source is on GitHub if you want to try it or poke around the code. Happy to hear how others are using it or what you'd do differently.