Moved to JS, using JSDOM and added Docker

This commit is contained in:
Pablo Ferreiro
2022-04-17 22:30:27 +02:00
parent 912e09882f
commit 6980abbef9
20 changed files with 1274 additions and 198 deletions

9
index.js Normal file
View File

@@ -0,0 +1,9 @@
const Signer = require("./src/Signer")
if (process.argv.length > 2) {
const signer = new Signer()
const url = process.argv[2]
const data = signer.sign(url)
console.log(data)
}