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

@mundophrase/cli

v1.2.4

Published

MundoPhrase CLI application

Readme

@mundophrase/cli

Manage MundoPhrase from the command-line.


Installation

Install @mundophrase/cli through npm:

$ npm install --save-dev @mundophrase/cli

Usage

The mundophrase command is available from the command-line:

$ mundophrase --help

Global options

A few global options are available to all commands, these are:

  • a, api-key, apiKey

The API Key for your Project on MundoPhrase. Please keep this value safe, it is highly discouraged to store this value in version-control.

It is also possible to specify this value through the MUNDOPHRASE_API_KEY environment variable.

Commands

get

Get a list of localization for a specified language, in a specified format. The result of this command will save the result to file.

Options
  • f, format

The file format to be saved. Valid options are android, ios, java, json, net and net_txt. Default json. The format chosen will determine the extension(s) of the saved file(s).

| format | extension | | --------- | ------------- | | android | .xml | | ios | .strings | | java | .properties | | json | .json | | net | .resx | | net_txt | .restxt |

  • l, language

The IETF language/locale code(s) to request and save to file, each language requested this way will be saved to a file named {language}.{extension} where extension can be found in the table above.

  • o, output-directory, outputDirectory

The directory in which to save the resulting file(s) relative to where the script is being run. Valid directory name may begin with or without the trailing ./.

Example
$ mundophrase get -a APIKEY -f android -l af-ZA -l en-US -o src/i18n

Development

Environment

For convenience, a development environment is included in the form of a Dockerfile and a docker-compose.yml file. To set it up you need to:

Copy the .env.sample file to .env and fill in the values (if required):

$ cp .env.sample .env

Build the container (app):

$ docker-compose build

Testing

All tests can be run with the command:

$ docker-compose run --rm app npm test

or without Docker:

$ npm test

If you choose this option you will have to npm install locally first.

Linting

Linting is run through eslint with eslint-config-airbnb-base as configuration. To run the linter you can use:

$ docker-compose run --rm app npm run test:lint

or without Docker:

$ npm run test:lint

Auditing

Auditing is done through the npm audit command with some options applied. To run auditing with default options applied you can use the command:

$ docker-compose run --rm app npm run test:vulnerabilities

or without Docker:

$ npm run test:vulnerabilities

Unit tests

Unit tests are run through Jest. When adding new functionality, please add tests. To run the unit tests you can use the following command:

$ docker-compose run --rm app npm run test:scripts

or without Docker:

$ npm run test:scripts

Releasing

We use semantic-release to release @mundophrase/cli. Any merge to the master branch will trigger a release automatically. Please read the the semantic-release documentation to see how commit messages should be formatted.