https://github.com/toxblh/clearscore
A simple way to collect your score from clearscore.com
https://github.com/toxblh/clearscore
Last synced: about 1 month ago
JSON representation
A simple way to collect your score from clearscore.com
- Host: GitHub
- URL: https://github.com/toxblh/clearscore
- Owner: Toxblh
- Created: 2019-05-07T14:53:15.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-07-19T01:36:38.000Z (about 3 years ago)
- Last Synced: 2025-01-07T09:36:19.156Z (over 1 year ago)
- Language: JavaScript
- Size: 229 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://www.npmjs.com/package/clear-score)
[](https://www.npmjs.com/package/clear-score)
[](https://www.npmjs.com/package/clear-score)
# Collect credit score from clearscore.com
A simple way to collect your score from clearscore.com
### Example result of work
```
Report date: 2019-04-17
Days until new: 12
Score: 615
```
### Install
1. `git clone https://github.com/Toxblh/ClearScore`
2. `cd ClearScore`
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 clear-score`
2. Use
```js
const getClearScore = require('clear-score')
getClearScore({
login,
pass,
}).then(score => {
console.log('Report date:', score.report_date)
console.log('Days until new:', score.updated_date)
console.log('Score:', score.score)
console.log('Report:', score.report)
})
```