Widen / i18next-async-backend

i18next backend which loads resources via promises. Useful when loading resources via dynamic imports.

Home Page:https://www.npmjs.com/package/i18next-async-backend

Repository from Github https://github.comWiden/i18next-async-backendRepository from Github https://github.comWiden/i18next-async-backend

i18next-async-backend

Build npm changesets

i18next backend which loads resources via promises. Useful when loading resources via dynamic imports.

Installation

npm

npm install i18next-async-backend

Yarn

yarn add i18next-async-backend

Usage

import i18next from 'i18next'
import AsyncBackend from 'i18next-async-backend'

const resources = {
  es: () => import('./locales/es/translation.json'),
}

i18next.use(AsyncBackend).init({
  backend: { resources },
})

Recipes

Single namespace

const resources = {
  en: () => import('./locales/en/translation.json'),
  es: () => import('./locales/es/translation.json'),
}

Multiple namespaces

const resources = {
  en: {
    common: () => import('./locales/en/common.json'),
    glossary: () => import('./locales/en/glossary.json'),
  },
  es: {
    common: () => import('./locales/es/common.json'),
    glossary: () => import('./locales/es/glossary.json'),
  },
}

About

i18next backend which loads resources via promises. Useful when loading resources via dynamic imports.

https://www.npmjs.com/package/i18next-async-backend

License:ISC License


Languages

Language:TypeScript 98.1%Language:JavaScript 1.9%