A Node.js module gets the current price of Gold
If you're using this module, feel free to contact me on twitter if you have any questions! :) @litzenberger
Current Version: 0.2.0
Tested on: node 0.10.26
This module uses web scraping to get the latest price of Gold.
var goldquote = require('goldquote')
// log the current price of gold
goldquote(function(price){console.log(price)});
npm install goldquote
There are no options.
var goldquote = require('goldquote')
goldquote(function(price){console.log(price)});
## How it Works
The module will scrape a gold website for current price and send that back.