1.1.0 • Published 2 years ago

@draverbot/i18next-backend v1.1.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

@skyra/i18next-backend

A fast and modern filesystem-based i18next backend for Node.js.

Usage

import { Backend } from '@skyra/i18next-backend';
import i18next from 'i18next';

i18next.use(Backend);

await i18next.init({
	backend: {
		paths: [
			// Using a string:
			'/locales/{{lng}}/{{ns}}.json',
			// Using an URL:
			new URL('/locales/{{lng}}/{{ns}}.json', import.meta.url),
			// Using a function:
			(lng, ns) => `/locales/${lng}/${ns}.json`
		]
	}
	// ... i18next options
});