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

推荐订阅源

Recent Announcements
Recent Announcements
博客园 - Franky
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
人人都是产品经理
人人都是产品经理
博客园 - 【当耐特】
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
爱范儿
爱范儿
罗磊的独立博客
博客园_首页
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
V
Visual Studio Blog
T
Tailwind CSS 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 Built a VS Code Extension That Tells You Every Node.js ...
Sagar Kashyap · 2026-06-15 · via DEV Community
Cover image for I Built a VS Code Extension That Tells You Every Node.js Package's Go Equivalent

Sagar Kashyap

We've all been there.

You're migrating a Node.js project to Go (or Rust, or Python — pick your poison), and you hit the first import:

import express from 'express';
import axios from 'axios';
import jsonwebtoken from 'jsonwebtoken';
import bcrypt from 'bcrypt';
import sequelize from 'sequelize';

And now the real work begins: Googling every single package to find its equivalent in Go.

"What's the Go equivalent of Express?" → Gin? Echo? Fiber? Chi?

"What replaces Axios in Go?" → net/http? resty? req?

"What's the Go bcrypt?" → golang.org/x/crypto/bcrypt? But wait, how do I import that?

Multiply this by 30–50 packages in a real codebase and you've just burned an entire afternoon on Stack Overflow tabs.

I got tired of it, so I built something

PackagePal is a free VS Code extension that does one thing really well:

Hover over any import → instantly see the top 3 equivalent packages in your target language.

No browser tabs. No Googling. No context switching. Just hover.

How it works (30-second version)

  1. Open any source file (JavaScript, Python, Go, Rust, Java, C++, Ruby, PHP, Swift, Kotlin — 13 languages supported)
  2. Set your target language (e.g., "Go") via the status bar
  3. Hover over any import statement
  4. PackagePal uses Gemini AI to find the top 3 equivalents with:
    • 📦 Package name and description
    • 💻 Ready-to-paste code snippet
    • 📘 Direct link to official documentation

That's it. No configuration files, no setup ceremony.

A real example: migrating Express to Go

Let's say you're converting a Node.js REST API to Go. Here's what happens when you hover over express:

PackagePal shows you:

# Go Equivalent Why
1 gin-gonic/gin Most popular, great middleware ecosystem, fast
2 labstack/echo Clean API, built-in middleware, good docs
3 gofiber/fiber Express-inspired syntax (easiest transition from Node)

Each suggestion includes a code snippet showing how to set up a basic server — so you can immediately start coding instead of reading "Getting Started" guides.

The sidebar: your migration dashboard

Beyond hover, PackagePal has a sidebar explorer (click the 🚀 icon in your Activity Bar) that:

  • Auto-scans every import in your current file
  • Shows a tree view of every package and its equivalents
  • Click to expand code snippets and documentation links

It's like having a migration cheat sheet that updates itself as you work through your codebase.

Why I built this

I was migrating a personal project from Node.js/Express to Go last year. The actual code translation wasn't hard — Go's syntax is straightforward if you know any C-family language.

The painful part was the dependency mapping. My package.json had 47 packages. For each one, I had to:

  1. Google "[package name] equivalent in Go"
  2. Compare 3–4 options on Reddit/GitHub
  3. Read the README to understand the API
  4. Write the import statement

This took me two full days just to map dependencies — before writing a single line of Go.

I figured: this should be one hover away, not a research project.

The tech behind it

PackagePal uses Google's Gemini AI (you bring your own free API key from Google AI Studio) to generate context-aware suggestions. It's not a static lookup table — it understands:

  • What the source package does (not just name matching)
  • The ecosystem conventions of the target language
  • Which alternatives are actively maintained in 2026

This means it works for niche packages too, not just the big ones.

Your key, your control

PackagePal uses a Bring Your Own Key (BYOK) model:

  • Get a free Gemini API key (takes 30 seconds)
  • The key is stored securely in VS Code's native Secret Storage
  • Only package names are sent to the API — zero source code leaves your machine

No accounts, no telemetry, no tracking.

What languages are supported?

Source / Target Languages
JavaScript, TypeScript, Python, Go, Rust, Java, Kotlin, C#, C++, Ruby, PHP, Swift

You can migrate in any direction — Python → Rust, Java → Go, Ruby → Python, whatever your project needs.

Try it in 60 seconds

  1. Install PackagePal from the VS Code Marketplace
  2. Run Set Gemini API Key from the command palette (get a free key at aistudio.google.com)
  3. Set your target language in the status bar
  4. Open any file with imports and hover

That's it. If it saves you even one Google search, I'd love to hear about it in the comments 👇

What's next

I'm actively working on:

  • Workspace batch scan — scan all files in your project at once
  • Migration reports — export a complete dependency mapping as a document
  • Multi-model support — choice of AI models beyond Gemini

If you have ideas or feedback, open an issue on GitHub or drop a comment below.


Links:

If PackagePal helps you, I'd really appreciate a ⭐ on the Marketplace — it helps other developers discover it!