Bing Translator module for node.js
$ npm install bing-translate
var bt = require('./lib/bing-translate.js').init({
client_id: 'your_client_id',
});
bt.translate('This hotel is located close to the centre of Paris.', 'en', 'ro', function(err, res){
console.log(err, res);
});
Please refer to this link for the complete list of the languages supported by BING.