0.2.0 • Published 8 years ago

silverqoute v0.2.0

Weekly downloads
5
License
MIT
Repository
github
Last release
8 years ago

silverquote

build

Get Current Spot price of silver.

A Node.js module to get the current price of silver

What it Does

This module uses web scraping to get the latest price of silver.

Quick example

var silverquote = require('silverquote')

// log the current price of silver
silverquote(function(err,price){
	console.log(price)
});

Install

npm install silverquote

Options

There are no options.

Examples:

var silverquote = require('silverquote')

silverquote(function(price){console.log(price)});

## Tests

npm install npm test

## How it Works

The module will scrape a gold website for current price and send that back.