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

monaco-editor-nls-adapter

v2.2.1

Published

Multi-language NLS adapter for Monaco Editor 0.50.0+ (Self-hosted)

Downloads

265

Readme

monaco-editor-nls-adapter

npm version License

Multi-language NLS adapter for Monaco Editor 0.50.0+ (Self-hosted). Bridge the gap for localization in modern building environments.

简体中文 | English


🌟 Features

  • Self-hosted Locales: No external CDN dependencies; all language data is bundled locally.
  • Monaco 0.50.0+ Ready: Fully compatible with the latest internal NLS signatures of Monaco Editor.
  • SourceMap Support: Powered by magic-string for accurate source-to-bundle mapping.
  • Ultra-Optimized (Mini & Lite):
    • JSON Minification: All locale files are pre-minified, reducing the stat size by ~15%.
    • Slim/Lite Export: Use ./lite for a zero-bloat experience with no dynamic scanning.
  • TypeScript Support: First-class TS definitions for an excellent developer experience.
  • Flexible API: Advanced interfaces like getCurrentLocale and setMessages (custom data).
  • Cross-Bundler: Native support for Webpack (Loader) and Vite/Rollup (Plugin).
  • Zero Configuration: Automatic detection of pnpm and monorepo paths out of the box.
  • Resilient: Global singleton state for micro-frontends and nested dependency environments.
  • Ultra-lightweight: Redundant test files removed for even faster installation.

📦 Supported Frameworks

This adapter is compatible with all modern frontend frameworks:

  • Vue 2: Seamless integration with Vue CLI and Webpack projects.
  • Vue 3: Full support for Vite and Vue CLI configurations.
  • React: Compatible with native React apps and @monaco-editor/react (supports disabling CDN).
  • Angular: Compatible with Angular CLI (Webpack/Vite) build environments.
  • SSR Frameworks: Ready for Next.js and Nuxt server-side rendering environments.
  • Universal: Theoretically supports any web project built with Webpack, Vite, or Rollup.

🚀 Installation

npm install monaco-editor-nls-adapter

🛠 Configuration

1. Webpack (Loader)

In your webpack.config.js, add the adapter's loader to process Monaco Editor's ESM files.

const { loader } = require('monaco-editor-nls-adapter');

module.exports = {
  module: {
    rules: [
      {
        test: /\.js$/,
        // Crucial: Only process monaco-editor ESM files
        include: /monaco-editor[\\/]esm/,
        use: [
          {
            loader: loader,
            options: {
              // Optional: Custom monaco path fragment
              // Detected automatically in most project structures (npm, pnpm, yarn)
              // monacoPath: 'monaco-editor/esm'
            }
          }
        ]
      }
    ]
  }
}

2. Vue CLI (vue.config.js)

For projects using Vue CLI, you can configure the loader via chainWebpack:

const { loader } = require('monaco-editor-nls-adapter');

module.exports = {
  chainWebpack: config => {
    config.module
      .rule('monaco-editor-nls')
      .test(/\.js$/)
      .include.add(/monaco-editor[\\/]esm/)
      .end()
      .use('nls-loader')
      .loader(loader)
      .end();
  }
};

3. Vite / Rollup (Plugin)

In your vite.config.js or vite.config.ts:

import { defineConfig } from 'vite';
import { vitePlugin } from 'monaco-editor-nls-adapter';

export default defineConfig({
  plugins: [
    vitePlugin({
      // Optional: Custom monaco path fragment
      // Automatically detected (works with pnpm and monorepos)
      // monacoPath: 'monaco-editor/esm'
    })
  ]
});

4. On-demand Packaging (Recommended)

By default, the adapter's entry point contains dynamic references that may cause bundlers to include all available locales (~13MB total stat size).

You can use the languages option to specify only the languages you need. This is easier than the Lite version because it retains the full automation of init() and initAsync() while significantly reducing the bundle size.

Vite Configuration (vite.config.js)

vitePlugin({
  languages: ['zh-hans', 'en'] // Only include Simplified Chinese and English
})

Webpack Configuration (webpack.config.js)

{
  loader: loader,
  options: {
    languages: ['zh-hans', 'ja'] // Only include Simplified Chinese and Japanese
  }
}

[!TIP] Extreme Optimization (Lite Version): If you want zero code injection, you can bypass the main entry point entirely and use the Lite version. See below:

// 1. Import from /lite (No dynamic loading logic included)
import { setMessages } from 'monaco-editor-nls-adapter/lite';

// 2. Manually import ONLY the language you need
import zhHans from 'monaco-editor-nls-adapter/locales/zh-hans.json';

// 3. Initialize BEFORE monaco-editor loads
setMessages(zhHans, 'zh-hans');

📖 Usage

Initialization

Call init or initAsync before importing monaco-editor or creating any editor instances.

import * as nlsAdapter from 'monaco-editor-nls-adapter';

// 1. Synchronous (Standard) nlsAdapter.init('zh-hans');

// 2. Asynchronous (Code Splitting) // await nlsAdapter.initAsync('zh-hans');

// 3. Get current locale console.log(nlsAdapter.getCurrentLocale()); // 'zh-hans'

// 4. Custom Messages (Override built-in locales) /* nlsAdapter.setMessages({ 'vs/editor/common/editorContextKeys': { 'editor.action.clipboardCopyAction': 'Copy (Custom)' } }); */

import * as monaco from 'monaco-editor'; // ... create editor as usual


### Framework Integration (React / Vue)

This package works seamlessly with major frameworks. Special note for **React** (@monaco-editor/react): Make sure to use `loader.config({ monaco })` to disable CDN and map to your local, localized monaco instance.

See: [Framework Integration Best Practices (Examples)](./examples/framework-integration.md)

### API Reference

| Function | Description |
| --- | --- |
| `init(locale?: string): boolean` | Synchronous initialization. **Note**: This will trigger the bundler to scan all locales in the directory. |
| `initAsync(locale?: string): Promise<boolean>` | Asynchronous initialization with dynamic imports. |
| `getLocaleName(): string` | [New] Returns the currently active locale code name (e.g., 'zh-hans'). |
| `getLocaleData(): object` | [New] Returns the current raw translation dictionary object. |
| `getCurrentLocale(): string` | Returns the currently active locale (alias for `getLocaleName`). |
| `setMessages(data: object, locale?: string)` | Manually inject translations. Recommended with `./lite` for minimum footprint. |
| `setLocaleData(data: object, locale?: string)` | Alias to `setMessages`. Sets the locale data into the proxy directly. |
| `vitePlugin(options?: object)` | Vite plugin function. |
| `loader: string` | Absolute path to the Webpack loader. |

## 🗂 Supported Locales

| Code | Language |
| --- | --- |
| `zh-hans` | Simplified Chinese (简体中文) |
| `zh-hant` | Traditional Chinese (繁体中文) |
| `en` | English |
| `ja` | Japanese (日本語) |
| `ko` | Korean (한국어) |
| `de` | German (Deutsch) |
| `fr` | French (Français) |
| `es` | Spanish (Español) |
| `it` | Italian (Italiano) |
| `ru` | Russian (Русский) |
| `pl` | Polish (Polski) |
| `tr` | Turkish (Türkçe) |
| `cs` | Czech (Čeština) |
| `pt-br` | Portuguese - Brazil (Português) |

## ❓ FAQ

### Why do I need this instead of `monaco-editor-nls`?
Since version 0.50.0, Monaco Editor updated its internal `localize` function signature. Existing plugins often rely on older versions or external CDNs. This adapter provides a clean, self-hosted proxy and a modern build-time transformation for both Webpack and Vite.

## 📄 License

MIT

---

## 💖 Credits & Attribution

The localized language packs (`.json` files) in the `/locales` directory are sourced from the [monaco-editor-nls](https://github.com/wang12124468/monaco-editor-nls) project. Special thanks to the original authors for their contributions to the community.