Skip to content

Instantly share code, notes, and snippets.

@mderazon
Created October 30, 2013 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mderazon/7230558 to your computer and use it in GitHub Desktop.
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