Skip to content

Your score from clubs.moneysavingexpert.com/creditclub

Notifications You must be signed in to change notification settings

Toxblh/CreditClub

Repository files navigation

Latest Stable Version License NPM Downloads

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
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)
})