An open API service indexing awesome lists of open source software.

https://github.com/xissy/node-google-translate-unlimited

Use google translate API simply without limits.
https://github.com/xissy/node-google-translate-unlimited

Last synced: about 1 year ago
JSON representation

Use google translate API simply without limits.

Awesome Lists containing this project

README

          

# node-google-translate-unlimited
> Use google translate API simply without limit.

## How to use
```javascript
var translate = require('google-translate-unlimited')

translate({
'sourceText': '24시간이 모자라',
'sourceLanguage': 'auto',
'toLanguage': 'en'
},
function(err, result) {
// result: {
// sourceText: '24시간이 모자라',
// translateText: '24 hours is not enough',
// phonetics: '24sigan-i mojala'
// }
...
});
```