https://github.com/toxblh/noddlescore
Get you credit score from noddle.co.uk in your CLI
https://github.com/toxblh/noddlescore
creditscore noddle
Last synced: about 1 month ago
JSON representation
Get you credit score from noddle.co.uk in your CLI
- Host: GitHub
- URL: https://github.com/toxblh/noddlescore
- Owner: Toxblh
- Created: 2019-05-01T10:42:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-06-22T02:26:20.000Z (5 months ago)
- Last Synced: 2025-08-09T12:05:59.494Z (3 months ago)
- Topics: creditscore, noddle
- Language: JavaScript
- Homepage:
- Size: 97.7 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://www.npmjs.com/package/noddle-score)
[](https://www.npmjs.com/package/noddle-score)
[](https://www.npmjs.com/package/noddle-score)
# Collect credit score from noddle.co.uk
A simple way to collect your score from noddle.co.uk and new url creditkarma.co.uk
### Example result of work
```
Date: 01/05/2019
Score: 579
```
### Install
1. `git clone https://github.com/Toxblh/NoddleScore`
2. `cd NoddleScore`
3. `echo "module.exports = { login: 'YourL0gin', pass: 'YourPassw0rd'}" > creds.js`
4. `yarn` or `npm i`
5. `node ./index.js`
6. Your score already front of you
### Lib version
1. `npm i noddle-score`
2. Use
```js
const getNoddleScore = require('noddle-score')
getNoddleScore({
login: creds.login,
pass: creds.pass,
}).then(score => {
console.log('Report date:', score.report_date)
console.log('Days until new:', score.updated_date)
console.log('Score:', score.score)
})
```