Skip to content

isabella232/node-yql

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-yql

node-yql is a YQL client for node.js

What is YQL?

Yahoo! Query Language is an expressive SQL-like language that lets you query, filter, and join data across Web services. With YQL, apps run faster with fewer lines of code and a smaller network footprint.

Yahoo! and other websites across the Internet make much of their structured data available to developers, primarily through Web services. To access and query these services, developers traditionally endure the pain of locating the right URLs and documentation to access and query each Web service.

With YQL, developers can access and shape data across the Internet through one simple language, eliminating the need to learn how to call different APIs.

Example YQL Queries

  • SELECT title,abstract FROM search.web WHERE query="pizza";
  • SELECT * FROM weather.forecast WHERE location = 90066;
  • SELECT * FROM twitter.user.timeline WHERE id = 'yql';
  • SELECT * FROM flickr.photos.interestingness(20);

You may find more examples at the YQL console

Installing node-yql

First, make sure you have Node installed. You can find instructions for installing it at http://nodejs.org/#download

With Node installed, you can install the node-yql module 2 ways:

  1. The easiest method is to use NPM, node's package manager. Once you have NPM installed, simply run:

    $ npm install yql

  2. Or, you can clone the github repository, and just be sure you add this module's path to the $NODE_PATH env variable

    $ git clone http://github.com/drgath/node-yql.git

Use within Node

A basic example

YQL.exec()

yql.js exports a single method, exec.

function exec (string query [, function callback] [, object params] [, object httpOptions])

  • query - A YQL query
  • callback - A callback function that receives the result of the query
  • params - Optional parameters for use within the YQL request querystring. Typical uses; including environment files, variable replacement within the YQL statement.
  • httpOptions - Additional HTTP options
    • ssl: A boolean true/false flag to enable HTTPS (default: false)
    • Any valid HTTP header

Additional YQL Resources

About

A YQL (Yahoo Query Language) module for NodeJS

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%