Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

netsparker-cloud

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

netsparker-cloud

JavaScript client for consuming the Netsparker Cloud API.

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Netsparker Cloud JS

A Javascript client targeting NodeJS automatically generated from the Swagger/OpenAPI Specification provided by Netsparker for their cloud scanning service.

The specification is located at: https://www.netsparkercloud.com/swagger/docs/v1

Quick Start

Other than a small modification to the specification which changes UUID type parameters to string type parameters (due to a bug in the generator) the generated client is untouched.

The generator provides a namespace from which an API specific client can be generated. The Netsparker API uses basic HTTP Authentication and there is a built in authentication strategy which can be easily configured with yout UserID and Token to make requests:

import { HttpBasicAuth, TeamMembersApi } from 'netsparker-cloud-js';

const basicAuth = new HttpBasicAuth();
basicAuth.username = "<Your UserId>";
basicAuth.password = "<Your Token>";

const teams = new TeamMembersApi();
teams.setDefaultAuthentication(basicAuth);

// Print the first page list of users in your account:
teams.teamMembersList()
  .then(data => data.body.list.map(user => console.log(user)))
  .catch(err => console.error(err));

Collaboration

First install/clean-install this package: npm ci

A simple script is included to fetch the specification using curl which is then provided to a development dependency module of this solution to create the client code in TypeScript. This can be ran using npm run genclient.

The generated code can be transpiled to JS using npm run compile (or simple tsc if you have TypeScript installed globally).

All of the above (including the install) can be done using npm run build.

Once updated, commit changes and push a PR.

Keywords

FAQs

Package last updated on 15 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc