npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hocgin/translate-cli

v1.0.0

Published

A CLI translation tool supporting multiple engines (Google/Bing/MyMemory)

Readme

translate-cli

A command-line translation tool supporting multiple engines (Google / Bing / MyMemory), inspired by translate-shell.

Installation

# Clone and build
git clone <repo-url> translate-cli
cd translate-cli
pnpm install
pnpm build

# Link globally to use the `translate` command
pnpm link --global

Requires Node.js >= 18.

Usage

translate [OPTIONS] [SOURCE]:[TARGETS] [TEXT]...

Basic Translation

# Auto-detect source language
translate :zh Hello

# Specify source and target
translate en:zh Hello World

# Translate to multiple languages
translate :zh+ja+ko Hello

Input Sources

# Text argument
translate :zh "Hello World"

# Stdin pipe
echo "Hello World" | translate :zh

# Read from file
translate -f input.txt :zh

Output Modes

# Normal (default): multi-target shows [Language] prefix
translate :zh+ja Hello

# Brief: translation text only, ideal for piping
translate -b :zh Hello

# Verbose: show engine, source/target languages, and translation
translate -v :zh Hello

Switch Engine

translate -e google :zh Hello       # default
translate -e bing :zh Hello
translate -e mymemory :zh Hello

Interactive REPL

translate -I :zh

Inside the REPL, type text to translate directly. Special commands:

| Command | Description | |----------------|--------------------------------------| | :help | Show available commands | | :q / :quit | Exit the REPL | | :e <engine> | Switch translation engine | | :s <from>:<to> | Switch language pair | | :l | List supported languages |

List Languages

translate --list-languages

All Options

| Option | Description | Default | |---------------------|--------------------------------------|----------| | -e, --engine | Translation engine (google/bing/mymemory) | google | | -b, --brief | Brief output mode | false | | -v, --verbose | Verbose output mode | false | | -I, --interactive | Interactive REPL mode | false | | -f, --file | Read input from file | - | | --list-languages | List all supported languages | false | | -V, --version | Show version number | - |

Language Pairs

The format is [SOURCE]:[TARGETS], where targets can be combined with +:

  • :zh -- auto-detect to Chinese
  • en:zh -- English to Chinese
  • :zh+ja+ko -- auto-detect to Chinese, Japanese, Korean

Run translate --list-languages to see all supported language codes.

Development

# Build
pnpm build

# Run directly without installing
node dist/cli.js :zh Hello
# or
pnpm dev -- :zh Hello

# Test
pnpm test
pnpm test:coverage

# Lint & Format
pnpm lint
pnpm format

Project Structure

src/
├── cli.ts                 # CLI entry, commander registration
├── types/index.ts         # Core type definitions
├── engines/
│   ├── types.ts           # TranslateEngine interface
│   ├── google.ts          # Google engine (default)
│   ├── bing.ts            # Bing engine
│   ├── mymemory.ts        # MyMemory engine
│   └── index.ts           # Engine registry & factory
├── commands/
│   ├── translate.ts       # Main translation logic
│   ├── interactive.ts     # Interactive REPL mode
│   └── languages.ts       # Language list output
└── utils/
    ├── language.ts        # Language code mapping (100+ languages)
    ├── parse.ts           # Language pair parser
    └── display.ts         # Output formatting

License

MIT