Bunch of updates. YOLO

This commit is contained in:
Marcus Noble 2020-04-08 11:19:26 +01:00
parent 46fc5713eb
commit 4e0567a728
3 changed files with 239 additions and 20 deletions

6
getToken.js Normal file
View File

@ -0,0 +1,6 @@
const { Remarkable, ItemResponse } = require('remarkable-typescript');
(async () => {
const client = new Remarkable();
const token = await client.register({ code: 'whahovrq' });
console.log(token);
})()

238
index.js

File diff suppressed because one or more lines are too long

View File

@ -9,10 +9,11 @@
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"axios": "^0.19.2",
"crypto-random-string": "^3.2.0", "crypto-random-string": "^3.2.0",
"dotenv": "^8.2.0", "dotenv": "^8.2.0",
"express": "^4.17.1", "jszip": "^3.2.2",
"puppeteer": "^2.1.1", "puppeteer": "^2.1.1",
"remarkable-typescript": "^1.0.5" "uuid4": "^1.1.4"
} }
} }