1.0.0 • Published 5 years ago

indian-gold-price v1.0.0

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

Indian Gold Price

A simple Node.js module to get the current gold price in rupees.

What it Does

This module uses the web scraping method to get the latest price of gold from goldratetoday website.

A Quick example

var goldrate = require('indian-gold-price');

goldrate(function(err,rate){
    console.log(rate);
});

How to Install

npm install indian-gold-price

To save as a dependency and use it in your code

npm install indian-gold-price --save

Options

Currently there are no options.

Examples:

var goldrate = require('indian-gold-price');

goldrate(function(err,rate){
    console.log(rate); // => { withsymbol: '₹ 31,859', tengram: '31859', onegram: 3185.9 }
    console.log(rate.withsymbol); // => ₹ 31,859
    console.log(rate.tengram); // => 31859 
    console.log(rate.onegram);  // =>  3185.9

});

Indian Gold Price

Tests

No tests written so far.

npm install
//npm test
1.0.0

5 years ago