@clqu/express-translation
Installation
This is a Node.js module available through the
npm registry. Installation is done using the
npm install
command:
$ npm install @clqu/express-translation express-session
express-session
is required module.
Usage
const app = require("express")();
const { Translation } = require("@clqu/express-translation");
const session = require("express-session");
const translation = new Translation({
path: "./locales/%file",
defaultLanguage: "en-US"
});
app.set('trust proxy', 1);
app.use(session({
secret: 'keyboard cat',
resave: false,
saveUninitialized: true,
cookie: {
secure: false
},
}));
app.use(translation.use);
app.get("/", (req, res) => {
res.send(req.t("hello"));
});
app.get("/languages", (req, res) => {
res.send(req.getLanguages());
});
app.get('/addLanguage', (req, res) => {
req.addLanguage('tr-TR');
res.send('Added language');
});
app.get('/setLanguage', (req, res) => {
req.setLanguage('tr-TR');
res.send(req.t('hello'));
});
app.listen(3000, () => {
console.log("Server started on port 3000");
});
Interface
interface Request {
t: (key: any) => void;
language: string;
addLanguage: (language: string) => void;
getLanguages: () => void;
setLanguage: (language: string) => void;
}
License
MIT