First setup help
Let's try to figure out what you need.
For which environment are you looking for an i18n solution?
Client, server, browser, React, mobile, desktop, Node.js, Deno...
There are a lot of appropriate libraries. Have a look at this list.
Special handling for serverless environments (AWS lambda, Google Cloud Functions, Azure Functions, etc...)
Make use of i18next-fs-backend
or just import/require your files directly
Do you need a language detector for your environment?
for example for the browser: i18next-browser-languageDetector
for example for http server (express, Fastify, etc...): i18next-http-middleware
Do you want to bundle the translations with your app?
on server side: you can load translations from filesystem
Do you want to load the translations separate from your app via http?
served from your own endpoint: i18next-http-backend
served from a professional CDN of a translation management system: i18next-locize-backend
Do you want to manage your translations with an awesome translation management system?
Last updated