Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/testica/a3hrgo-sdk
a3HRgo sdk to automatize your reports
https://github.com/testica/a3hrgo-sdk
a3hrgo crawler javascript puppeteer
Last synced: 26 days ago
JSON representation
a3HRgo sdk to automatize your reports
- Host: GitHub
- URL: https://github.com/testica/a3hrgo-sdk
- Owner: testica
- Created: 2019-05-16T08:44:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T03:30:12.000Z (over 1 year ago)
- Last Synced: 2024-09-30T15:31:06.673Z (about 1 month ago)
- Topics: a3hrgo, crawler, javascript, puppeteer
- Language: TypeScript
- Homepage:
- Size: 191 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# a3HRgo SDK
[![npm version](https://badge.fury.io/js/a3hrgo-sdk.svg)](https://badge.fury.io/js/a3hrgo-sdk)### Requisites
- Node >= 6
- NPM### Install
```
npm install a3hrgo-sdk
```### Usage
``` ts
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- `report()` async method class to do a report