https://github.com/marcellourbani/abap-adt-api
Abap Developer Tools client
https://github.com/marcellourbani/abap-adt-api
abap adt hacktoberfest
Last synced: 12 months 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-27T15:59:59.000Z (over 1 year ago)
- Last Synced: 2025-03-30T06:09:36.167Z (12 months ago)
- Topics: abap, adt, hacktoberfest
- Language: TypeScript
- Homepage:
- Size: 840 KB
- Stars: 47
- Watchers: 9
- 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
[](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")
```