🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more
Socket
Book a DemoInstallSign in
Socket

@abtnode/client

Package Overview
Dependencies
Maintainers
1
Versions
987
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@abtnode/client

graphql client to read/write data on abt node

Source
npmnpm
Version
0.3.8
Version published
Maintainers
1
Created
Source

ABT Node Client

Client library to connect webapp to Abt Node Daemon

Table of Contents

  • Install
  • Usage
  • Debugging
  • Documentation

Install

npm i @abtnode/client -S
# OR
yarn add @abtnode/client

Usage

const AbtNodeClient = require('@abtnode/client');

const client = new AbtNodeClient('http://localhost:8210/api');
console.log({
  queries: client.getQueries(),
  subscriptions: client.getSubscriptions(),
  mutations: client.getMutations(),
});

client.listBlocklets().then(console.log);

Debugging

  • If you are in Node.js: DEBUG=@abtnode/client node script.js
  • If you are in Browser: localStorage.setItem('DEBUG', '@abtnode/client')

Documentation

Query arguments and response structure can be found: QUERIES.md

Keywords

graphql

FAQs

Package last updated on 27 Apr 2020

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