Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 months 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-19T03:48:48.000Z (8 months ago)
- Last Synced: 2024-08-09T20:31:44.364Z (6 months ago)
- Topics: creditscore, noddle
- Language: JavaScript
- Homepage:
- Size: 97.7 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Latest Stable Version](https://img.shields.io/npm/v/noddle-score.svg)](https://www.npmjs.com/package/noddle-score)
[![License](https://img.shields.io/npm/l/noddle-score.svg)](https://www.npmjs.com/package/noddle-score)
[![NPM Downloads](https://img.shields.io/npm/dt/noddle-score.svg)](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)
})
```