Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/statickidz/node-google-translate-skidz
Simple Node.js library for talking to Google's Translate API for free.
https://github.com/statickidz/node-google-translate-skidz
api free google google-translate translate translation translator
Last synced: 7 days ago
JSON representation
Simple Node.js library for talking to Google's Translate API for free.
- Host: GitHub
- URL: https://github.com/statickidz/node-google-translate-skidz
- Owner: statickidz
- License: mit
- Created: 2015-08-06T07:15:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-16T17:06:21.000Z (over 1 year ago)
- Last Synced: 2024-05-13T02:03:17.452Z (6 months ago)
- Topics: api, free, google, google-translate, translate, translation, translator
- Language: JavaScript
- Homepage: https://statickidz.com
- Size: 66.4 KB
- Stars: 73
- Watchers: 5
- Forks: 30
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Google Translate Node JS [![Build Status](https://travis-ci.org/statickidz/node-google-translate-skidz.svg?branch=master)](https://travis-ci.org/statickidz/node-google-translate-skidz)
Google Translate API client for node.js.
## Install
```js
npm install node-google-translate-skidz --save
```## USAGE
```js
var translate = require('node-google-translate-skidz');translate({
text: 'text',
source: 'es',
target: 'en'
}, function(result) {
console.log(result);
});
```