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 🙏

© 2025 – Pkg Stats / Ryan Hefner

mnee-cli

v1.3.2

Published

A CLI tool for interacting with MNEE USD

Readme

MNEE CLI

MNEE CLI is a command-line interface tool designed for interacting with MNEE USD.

Features

  • Self custody wallet
  • Securely store keys
  • User friendly
  • Support for multiple wallets
  • Production and sandbox environments
  • Transaction history tracking

Installation

Windows & macOS

npm install -g mnee-cli

Linux

Note: Linux systems are not officially supported at this time due to keychain dependencies. However, users may be able to get it working with the following steps:

Possible Solutions for Linux Users:

  1. Desktop Environment with Keyring Service

    The CLI requires a desktop environment with a keyring service (like GNOME Keyring or KDE Wallet) for secure credential storage.

    Ubuntu/Debian:

    sudo apt-get install libsecret-1-dev gnome-keyring
    npm install -g mnee-cli

    Fedora/RHEL:

    sudo dnf install libsecret-devel gnome-keyring
    npm install -g mnee-cli

    Arch Linux:

    sudo pacman -S libsecret gnome-keyring
    npm install -g mnee-cli
  2. For Headless/Server Environments

    If running on a server without a desktop environment, you may need to:

    • Set up D-Bus: dbus-launch
    • Initialize a keyring daemon manually
    • Consider using a Docker container with a desktop environment
  3. Alternative Approach

    Consider running the CLI on Windows or macOS where it is fully supported, or use WSL2 on Windows with a desktop environment configured.

Important: Even with these workarounds, you may encounter issues with credential storage on Linux systems. Full Linux support may be added in future versions.

Usage

After installing, you can use the mnee command in your terminal:

mnee

Commands

Wallet Management

  • mnee create: Create a new wallet
  • mnee address: Get your wallet address
  • mnee balance: Check your MNEE balance
  • mnee transfer: Transfer MNEE to another address (automatically polls for transaction status)
  • mnee status <ticketId>: Check the status of a transaction using its ticket ID
  • mnee export: Decrypt and retrieve your private key in WIF format
  • mnee delete <walletName>: Delete a wallet
  • mnee list: List all your wallets and optionally switch to a different wallet
  • mnee use <walletName>: Switch to a different wallet
  • mnee rename <oldName> <newName>: Rename a wallet
  • mnee import: Import an existing wallet using a WIF private key
  • mnee history: View transaction history (shows all transactions by default)
    • -u, --unconfirmed: Show only unconfirmed transactions
    • -c, --confirmed: Show only confirmed transactions

Authentication & Developer Portal

  • mnee login: Authenticate with MNEE Developer Portal
  • mnee logout: Sign out from MNEE Developer Portal
  • mnee whoami: Show current authenticated user information
  • mnee faucet: Request sandbox tokens (requires authentication)
    • -a, --address <address>: Deposit address (defaults to active wallet)
    • Note: Only available in sandbox mode

Contributing

Contributions are welcome! Please fork the repository and submit a pull request.

License

This project is licensed under the ISC License.