Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toxblh/creditclub
Your score from clubs.moneysavingexpert.com/creditclub
https://github.com/toxblh/creditclub
creditclub creditscore experian
Last synced: 29 days ago
JSON representation
Your score from clubs.moneysavingexpert.com/creditclub
- Host: GitHub
- URL: https://github.com/toxblh/creditclub
- Owner: Toxblh
- Created: 2019-05-01T15:18:44.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-12-23T10:09:53.000Z (about 3 years ago)
- Last Synced: 2024-12-10T17:21:12.669Z (about 2 months ago)
- Topics: creditclub, creditscore, experian
- Language: JavaScript
- Size: 132 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Latest Stable Version](https://img.shields.io/npm/v/credit-club.svg)](https://www.npmjs.com/package/credit-club)
[![License](https://img.shields.io/npm/l/credit-club.svg)](https://www.npmjs.com/package/credit-club)
[![NPM Downloads](https://img.shields.io/npm/dt/credit-club.svg)](https://www.npmjs.com/package/credit-club)# Collect credit score from CreditClub
A simple way to collect your score from clubs.moneysavingexpert.com/creditclub### Example result of work
```
Date: 7 Apr 2019
Score: 932
```### Install
1. `git clone https://github.com/Toxblh/CreditClub`
2. `cd CreditClub`
3. `echo "module.exports = { login: 'YourL0gin', pass: 'YourPassw0rd', word: 'YourW0rd'}" > creds.js`
4. `yarn` or `npm i`
5. `node ./index.js`
6. Your score already front of you### Lib version
1. `npm i credit-club`
2. Use
```js
const getCreditClubScore = require('credit-club')getCreditClubScore({
login: creds.login,
pass: creds.pass,
word: creds.word
}).then(score => {
console.log('Report date:', score.report_date)
console.log('Days until new:', score.updated_date)
console.log('Score:', score.score)
})```