New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gizoogle

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gizoogle

Node.js interface for gizoogle.net - Snoop Dogg style translator

  • 0.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
16
decreased by-40.74%
Maintainers
1
Weekly downloads
 
Created
Source

Gizoogle.js

Build Status

Gizoogle.net translates a string or a complete website to a Snoop Dogg like slang. Since it lacks an API and of course you want to use it in your JavaScript projects, I have created this Node.js interface to help you out. If you're using Slack you might like gizoogle-slack - gizoogle Slack integration module.

Installation

To install via npm, please run

npm install gizoogle

Usage

var G = require('gizoogle');

// To translate a string
G.string('hello world', function(error, translation) {
	...
});

// To translate a website
G.website('http://google.com', function(error, translation) {
	...
});

API

G.string(string, callback);

Translates a string.

string String String to translate.

callback function(Error, String) Callback to call when translation is ready.

G.website(url, callback);

Translates a string.

url String URL of the website to translate.

callback function(Error, String) Callback to call when translation is ready.

Keywords

FAQs

Package last updated on 17 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc