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

@jason-localise/cli

v0.2.0

Published

Official CLI for Jason — i18n translation automation platform (jason-localise.com)

Readme

@jason-localise/cli

Official command-line interface for Jason — the i18n translation automation platform. Translate your i18n files from your terminal, scripts, or CI/CD.

🌐 jason-localise.com

Installation

npm install -g @jason-localise/cli

This installs the jason command globally.

Quick start

# 1. Initialize config in your project
jason init

# 2. Translate your source file
jason translate --watch

# 3. Pull the translated files
jason pull

Configuration

jason init creates a .jasonrc file in your project:

{
  "apiUrl": "https://jason-eo7q.onrender.com",
  "apiKey": "jsk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
  "projectId": "cm4x9z2ab0001abc123",
  "sourceFile": "./locales/fr.json",
  "sourceLanguage": "fr",
  "targetLanguages": ["en", "de", "es"],
  "outputDir": "./locales"
}

⚠️ Add .jasonrc to your .gitignore — it contains your API key. In CI/CD, use the JASON_API_KEY environment variable instead.

Commands

jason init

Interactive setup. Creates a .jasonrc file in the current directory.

jason translate

Reads the source file, sends it to the Jason API, and returns a job ID.

jason translate                                    # use config defaults
jason translate --file ./src/i18n/fr.json
jason translate --languages en,de,es
jason translate --watch                            # wait for completion

jason status <jobId>

Show the current state of a translation job.

jason status cm5abc123xyz
jason status cm5abc123xyz --watch                  # poll until done

jason pull

Download translations and write them to local JSON files. Auto-detects whether your source file is flat or nested and writes in the same format.

jason pull
jason pull --languages en,de
jason pull --output ./src/i18n

CI/CD example — GitHub Actions

name: Translate i18n
on:
  push:
    branches: [main]
    paths: ['locales/fr.json']

jobs:
  translate:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: '20'
      - run: npm install -g @jason-localise/cli
      - run: |
          jason translate --watch
          jason pull
        env:
          JASON_API_KEY: ${{ secrets.JASON_API_KEY }}
      - run: |
          git config user.name 'Jason Bot'
          git config user.email '[email protected]'
          git add locales/
          git commit -m 'chore: update translations' || exit 0
          git push

Environment variables

| Variable | Description | |---|---| | JASON_API_KEY | Overrides apiKey in .jasonrc. Use this in CI/CD. |

Requirements

  • Node.js 18 or higher
  • A Jason account (sign up here)
  • An API key (Settings → API Keys)

License

MIT