zenware / gfinance

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gfinance NPM version Build Status Dependency Status Coverage percentage

A way to access the now deprecated Google Finance API

Installation

$ npm install --save gfinance

Usage

var gfinance = require('gfinance');

gfinance.get(['GOOG'], function (err, res) {
  if (err) {
    console.error(err);
  } else {
    console.log(res);
  }
}

License

MIT © Jay Looney <jay.m.looney@gmail.com>

About

License:MIT License


Languages

Language:JavaScript 100.0%