https://github.com/toxblh/creditclub
Your score from clubs.moneysavingexpert.com/creditclub
https://github.com/toxblh/creditclub
creditclub creditscore experian
Last synced: about 1 year 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-12-23T10:09:53.000Z (over 4 years ago)
- Last Synced: 2025-02-07T16:48:09.272Z (over 1 year 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
[](https://www.npmjs.com/package/credit-club)
[](https://www.npmjs.com/package/credit-club)
[](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)
})
```