UNPKG

abap-adt-api

Version:

Interface to Abap Developer Tools webservice

24 lines (16 loc) 713 B
[![npm](https://img.shields.io/npm/v/abap-adt-api?label=abap-adt-api)](https://www.npmjs.com/package/abap-adt-api) # ADT - Abap Developer Tools client This library simplifies access to the ADT REST interface. Supports a good share of what Eclipse tools can do with a simple JS/TS interface. Designed for general use, mostly used in [ABAP remote filesystem extension for visual studio code](https://github.com/marcellourbani/vscode_abap_remote_fs) ## Sample usage ```typescript // create a client object import { ADTClient } from "abap-adt-api" const client = new ADTClient( "http://vhcalnplci.bti.local:8000", "developer", "mypassword" ) const nodes = await client.nodeContents("DEVC/K", "$TMP") ```