Skip to content

a4amado/nodejs-sdk

 
 

Repository files navigation

webdock

NPM

NodeJS SDK Library / Wrapper for the Webdock API

Installation

npm install webdock

Documentation

Full API documentation is available at: api.webdock.io

Usage example

const WebdockApi = require("webdock");

WebdockApi.OpenAPI.TOKEN = "Your_token_goes_here";

const main = async () => {
    const ping = await WebdockApi.PingService.getPing();
    console.log(ping); // { webdock: 'rocks' }

    const servers = await WebdockApi.ServersService.getServers();
    console.log(servers);
};

main();

About

NodeJS SDK Library / Wrapper for the Webdock API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 96.7%
  • JavaScript 3.3%