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

glesys-api

Package Overview
Dependencies
Maintainers
0
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

glesys-api

Node.js wrapper for the GleSYS API.

  • 8.5.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-93.94%
Maintainers
0
Weekly downloads
 
Created
Source

glesys-api

npm build Coverage Status

A Node.js wrapper for the GleSYS API.

Installation

Note: Node 18.12.0 (LTS) or later is required.

npm install glesys-api

Usage

import GleSYSAPI from 'glesys-api';

const glesys = new GleSYSAPI({
    apiKey: 'key',
    apiUser: 'user',
});

try {
    const { body } = await glesys.api.serviceInfo();

    console.log(body);
} catch (e) {
    console.error(e);
}

glesys.email.createAccount({
    emailaccount: 'example@example.com',
    password: 'password',
});

Available methods

account

api

archive

country

customer

domain

email

fileStorage

invoice

ip

loadBalancer

network

networkAdapter

networkCircuit

objectStorage

paymentCard

privateNetwork

project

server

serverDisk

sshKey

user

vpn

For more information about the GleSYS API, available arguments etc., please see the GleSYS API documentation.

Keywords

FAQs

Package last updated on 30 Jun 2024

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