
Nuxt I18n Micro is a fast, simple, and lightweight internationalization (i18n) module for Nuxt. Despite its compact size, it's designed with large projects in mind, offering significant performance improvements over traditional i18n solutions like nuxt-i18n. The module was built from the ground up to be highly efficient, focusing on minimizing build times, reducing server load, and shrinking bundle sizes.
The Nuxt I18n Micro module was created to address critical performance issues found in the original nuxt-i18n module, particularly in high-traffic environments and projects with large translation files. Key issues with nuxt-i18n include:
To showcase the efficiency of Nuxt I18n Micro, we conducted tests under identical conditions. Both modules were tested with a 10MB translation file on the same hardware. We also include a plain-nuxt baseline (no i18n module) to measure the real overhead.
Note: The
plain-nuxtbaseline is a minimal implementation created solely for benchmarking purposes. It loads data directly from JSON files without any i18n logic. Real-world applications will have more complexity and higher resource usage.
| Project | Build Time | Code Bundle | Max Memory | Max CPU |
|---|---|---|---|---|
| plain-nuxt (baseline) | 5.71s | 1.35 MB | 674 MB | 240% |
| i18n-micro | 23.47s | 1.5 MB | 1,658 MB | 208% |
| i18n v10 | 84.91s | 19.24 MB | 9,528 MB | 439% |
Code Bundle = JavaScript/CSS code only (excludes translation JSON files). i18n-micro stores translations as lazy-loaded JSON files, keeping the code bundle minimal.
| Project | Avg Response | RPS (Artillery) | Max Memory |
|---|---|---|---|
| plain-nuxt | 544 ms | 228 | 340 MB |
| i18n-micro | 411 ms | 292 | 347 MB |
| i18n v10 | 1,363 ms | 51 | 1,243 MB |
These results clearly demonstrate that Nuxt I18n Micro significantly outperforms the original module in every critical area while staying close to the plain Nuxt baseline.
Nuxt I18n Micro is designed for large-scale projects, focusing on performance and efficiency.dev mode if not present.Install the module in your Nuxt application with:
npm install nuxt-i18n-micro
Then, add it to your nuxt.config.ts:
export default defineNuxtConfig({
modules: [
'nuxt-i18n-micro',
],
i18n: {
locales: [
{ code: 'en', iso: 'en-US', dir: 'ltr' },
{ code: 'fr', iso: 'fr-FR', dir: 'ltr' },
{ code: 'ar', iso: 'ar-SA', dir: 'rtl' },
],
defaultLocale: 'en',
translationDir: 'locales',
meta: true,
},
})
That's it! You're now ready to use Nuxt I18n Micro in your Nuxt app.