Which package do you use for localization with express in node.js?
Thanks!
Which package do you use for localization with express in node.js?
Thanks!
node-localize can work together with express.
Depending on where you want the localization, jqtpl-express-i18n can do the job for templating.
Actually I use this NPM Package i18n
It have a very simple usage with Express framework... create locales folder (it.json, en.json, etc...)
// load modules at bootstrap
var app = express();
var i18n = require("i18n");
//set configuration
i18n.configure({
locales:['en', 'de'],
directory: __dirname + '/server/locales'
});
app.use(i18n.init);
// and then, in controller we can use response
res__('YOUR_KEY')
Front End side just set the HTTP header Accept-Language
with value 'en', 'it', etc.
You can use language-translator library. It uses json files to load texts. You can define languages whatever you want.
I found few of the best libraries to deal with localization in nodeJS:
I used localizify library in own project, it's very light.
const localizify = require('localizify');
// ...
app.configure(() => {
app.use((request, response, next) => {
const lang = request.headers['accept-language'] || 'en';
localize.setLocale(lang);
next();
});
});
node-localize can work for Localization in node.js with express.
© 2022 - 2024 — McMap. All rights reserved.