Wrapper for the testssl project. Returns JSON.
npm install testsslYou may have to install:
hexdump
```
apt install bsdmainutils
git
``
apt install git
npm i testssl
`
Usage
This will take 1-2 minutes before returning the data as JSON
index.js
`js
const { testssl } = require("testssl");(async () => {
const a = await testssl('example.com');
console.log(a);
})();
``