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

react-intl-universal-extract

v1.2.0

Published

A react-intl-universal message extractor

Readme

react-intl-universal-extract

Extract react-intl-universal's default messages in source code to locale files.

For example, suppose you have a file:

  render() {
    const name = 'Tony';
    return (<>
      {intl.get('hello1').d('Hello World')}
      {intl.get('hello2', { name }).d('Hello {name}')}
    </>);
  }

This tool will generate a json file which contains the extracted messages.

{
  "hello1": "Hello World",
  "hello2": "Hello {name}"
}

Default message syntax

Use ICU placeholders in default messages:

intl.get('greeting', { name }).d('Hello {name}')
// Extracted as: "Hello {name}"

${...} inside a quoted string is ordinary text and is preserved. This is useful when the product explains another template syntax:

intl.get('template_help').d('Use ${name} in the template')
// Extracted as: "Use ${name} in the template"

Escaped newlines in quoted strings

For compatibility, the extractor preserves JavaScript escape sequences in single- and double-quoted default messages as source text. It does not evaluate \n as a line break:

intl.get('quoted_lines').d('First line\nSecond line')

The parsed locale value contains a literal backslash followed by n:

{
  "quoted_lines": "First line\\nSecond line"
}

For a visual line break in React, use rich-text tags with intl.get(...):

intl.get('multiline', {
  br: () => <br />,
}).d('First line<br></br>Second line')

Install

npm install --save-dev react-intl-universal-extract

Usage

CLI

In package.json, add a script:

{
  "scripts": {
    "intl:extract": "npx react-intl-universal-extract --cmd extract --source-path ./src --output-path ./src/locales/en_US.json"
  }
}

Then run npm run intl:extract.

Parameters:

  • --cmd: Only extract is currently supported.
  • --source-path: Source code directory, such as ./src.
  • --output-path: Locale JSON output file, such as ./src/locales/en_US.json.
  • --verbose: Show per-file and per-message details. Stage summaries are always shown.

The CLI prints concise Extract, Verify, and Write stages by default. Validation errors include the key and file:line location. Each conflicting default-message occurrence is printed on its own line:

Extracting messages from ./src
Found 128 messages. Verifying...
❌ Missing default message for key="USER_NAME" - src/User.tsx:42
❌ Conflicting default message for key="SUBMIT": "Submit" - src/Form.tsx:18
❌ Conflicting default message for key="SUBMIT": "Save" - src/Dialog.tsx:27
Validation failed: 2 problems found.

Exit status

  • 0: scanning, validation, and optional output writing all succeeded. A valid source directory with zero messages also returns 0.
  • 1: scanning, message validation, output writing, or CLI command selection failed.

This makes the command suitable for CI checks. Failure output does not include the final messages extracted success summary.

License

This software is free to use under the BSD license.

Contributing

See develop.md.