A Node.js module to get the current price of silver
This module uses web scraping to get the latest price of silver.
var silverquote = require('silverquote')
// log the current price of silver
silverquote(function(err,price){
console.log(price)
});
npm install silverquote
There are no options.
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.