transifexjs
v0.1.3
Published
Transifex API communication module
Downloads
30
Readme
Transifex nodeJS API
TransifexJS is an module to get data from Transifex API.
//NOTE : chainable methods ! =D
transifex = new require('transifexjs');
transifex.login('xxx','xxx')
.setProject('site-5')
.setResource('strings-site')
.setLang('en')
.translation(function(c){
console.log(c)
});