Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcellourbani/abap-adt-api
Abap Developer Tools client
https://github.com/marcellourbani/abap-adt-api
abap adt hacktoberfest
Last synced: 26 days ago
JSON representation
Abap Developer Tools client
- Host: GitHub
- URL: https://github.com/marcellourbani/abap-adt-api
- Owner: marcellourbani
- License: mit
- Created: 2019-01-20T20:55:42.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-23T08:33:10.000Z (about 1 month ago)
- Last Synced: 2024-09-26T21:48:18.315Z (about 1 month ago)
- Topics: abap, adt, hacktoberfest
- Language: TypeScript
- Homepage:
- Size: 818 KB
- Stars: 44
- Watchers: 10
- Forks: 11
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- abap-florilegium - abap-adt-api
README
[![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")
```