Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

messages-modules

Package Overview
Dependencies
Maintainers
1
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

messages-modules

Messages (localized strings) that are scoped locally.

  • 1.1.78
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

messages-modules

License npm download Dependencies

Messages (localized strings) that are scoped locally.

Installation 💻

Add the package as a dependency:

npm install messages-modules

What's in it for me? 🤔

  • Modular messages (also known as "localized strings") that work just like CSS modules (no more monolithic files).
  • A build-time plugin generator for Babel
  • The ability to extend to other compilers (e.g., SWC)

Who is this for? 👥

⚠️ Note that while this package offers simplistic plugin implementations of messages-modules, we do not recommend using them as-is.

We have 2 audiences in mind: internationalization (i18n) packages or advanced users who built their own i18n library in their projects.

Building an i18n library is not a simple task, as a lot of linguistics aspects (e.g., multi-plurals, inline markup) are easy to get wrong. messages-module has been built with customization in mind, as you can:

  • Configure which file type you would like to use.
  • Configure which function calls will require injected messages.
  • Build your own function call that will parse the files so that you can have your own parsing logic.

If you are interested to see a mature i18n library using messages-modules, check out next-multilingual.

How does it work? 🧬

In a nutshell, messages-module relies on compiler plugins to inject messages automatically to avoid writing a lot of boilerplate code like this:

import enUs from './my-file.en-US.json'
import frCa from './my-file.fr-CA.json'
// .. imagine 20 other languages (imports) here depending on your project...

import { Messages } from './messages'

const messages = new Messages([enUs, frCa /** the list goes on... */])

console.log(messages.format('en-US', 'greeting'))

Now imagine a React application where you have to add this boilerplate code in all your files using messages... And imagine add/removing languages. This is just a disaster waiting to happen.

What we are proposing instead is this simplified syntax, by injecting messages automatically in the functions you want:

import { getMessages } from './messages'

const messages = getMessages()

console.log(messages.format('en-US', 'greeting'))

To keep this simple, the message-modules plugins only support named imports and named exports. This means that namespace imports, dynamic imports and require imports are out of scope:

👍 Supported

// Named import
import { getMessages } from 'messages-modules'
// Named export (used for shared messages)
export { getMessages } from 'messages-modules'

👎 Unsupported

// Namespace import
import * as messagesModules from 'messages-modules'
// Dynamic imports
const { getMessages } = await import('messages-modules')
// Require imports
const messagesModules = require('messages-modules')

Why messages modules? 🤷

Most Node.js internationalization (i18n) libraries today either come with monolithic files to store all localized messages, or they include the concept of "namespaces" to break down messages in smaller files.

But think about it, do we put all CSS in a single file? Or all HTML markup in a single file? Why would it be any different for localized messages.

Ultimately messages are content that can be use in a given context and making it modular optimizes both its management (see proximity principle) while making client bundles size smaller (faster apps!)

Keywords

FAQs

Package last updated on 28 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc