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.
- Host: GitHub
- URL: https://github.com/xissy/node-google-translate-unlimited
- Owner: xissy
- Created: 2014-04-01T03:18:15.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-04-05T10:39:42.000Z (about 12 years ago)
- Last Synced: 2025-02-07T18:53:52.861Z (over 1 year ago)
- Language: CoffeeScript
- Size: 148 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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'
// }
...
});
```