Skip to content

Instantly share code, notes, and snippets.

@mderazon
Created October 30, 2013 10:43
Show Gist options
  • Select an option

  • Save mderazon/7230558 to your computer and use it in GitHub Desktop.

Select an option

Save mderazon/7230558 to your computer and use it in GitHub Desktop.
adding i18n in express app
var express = require('express');
var i18n = require('./i18n');
var app = express();
app.set('views', __dirname + '/views');
app.use(i18n);
app.get('/', function(req, res) {
console.log(res.__('Hello i18n'));
res.render('index.ejs');
});
app.listen('3000');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment