a3hrgo-sdk
v1.0.4
Published
A3hrgo SDK headless-chrome based
Readme
a3HRgo SDK
Requisites
- Node >= 6
- NPM
Install
npm install a3hrgo-sdkUsage
import { A3hrgo } from 'a3hrgo-sdk';
const a3hrgo = new A3hrgo({
id: "xxxx", password: "xxxx"
});
// Do a report
(async () => {
await a3hrgo.report();
})();
API
A3hrgo(credentials, options)class constructor- credentials: object
- id: string
- password: string
- options: object
- showInterface: boolean to enable/disable headless chrome
- credentials: object
report()async method class to do a report
