1.0.1 • Published 3 years ago

@discorddungeons/iqlclient v1.0.1

Weekly downloads
-
License
EUPL-1.2-or-later
Repository
github
Last release
3 years ago

ImageServer-TS

Package for interacting with ImageServer, written in TypeScript

Installation

npm i --save @discorddungeons/iqlclient

Usage

Create a new client:

import { IQLClient } from 'iqlclient'

const client = new IQLClient("https://example.com")

Create and send a new query:

import { IQLClient, IQLQuery } from 'iqlclient'

const client = new IQLClient("https://example.com")

const query = new IQLQuery().loadImage("image-url", "imageName").returnImage("imageName")

client.send(query).then(image => {
	// Do stuff with the image blob
})