Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jupiterone/tenable-client-nodejs
https://github.com/jupiterone/tenable-client-nodejs
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jupiterone/tenable-client-nodejs
- Owner: JupiterOne
- Created: 2021-06-30T18:12:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-02T19:14:00.000Z (11 months ago)
- Last Synced: 2024-10-12T21:59:42.987Z (about 1 month ago)
- Language: TypeScript
- Size: 76.2 KB
- Stars: 0
- Watchers: 16
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# tenable-client-nodejs
## Installation
```
# Install with NPM
> npm install @jupiterone/tenable-client-nodejs# Install with Yarn
> yarn install @jupiterone/tenable-client-nodejs
```## Usage
```typescript
import { TenableClient } from '@jupiterone/tenable-client-nodejs';const client = new TenableClient({
// required for authentication
accessKey: 'access-key',
secretKey: 'access-key',
// required for the `user-agent` header
vendor: 'access-key',
product: 'access-key',
build: 'access-key',
});client.fetchUsers()
.then((r) => console.log(r))
.catch((e) => console.error(e))
```