1.0.5 • Published 7 years ago

ifsc-nodejs v1.0.5

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

ifsc-nodejs

This is a nodejs API/module for getting IFSC details..(BANK NAME, BRANCH NAME, ADDRESS, CONTACT, CITY, DISTRICT, STATE).

See the package source for more details.

Installation

npm install ifsc-nodejs --save
var ifsc = require('ifsc-nodejs');

Usage

ifsc.getDetails(IFSC, function(error, data){ //In place of IFSC type your IFSC code..like "ABHY0065001"
	if(error){
		//you will get error message here if IFSC is wrong or something goes wrong
	}
	else{
		//here you will get details as json object
		console.log(data);
	}
});

License

The code in this repository is licensed under the MIT License. License text is available in the LICENSE.txt file.

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago