You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
4 days ago | |
---|---|---|
dist | 4 days ago | |
.drone.yml | 5 days ago | |
.gitignore | 2 years ago | |
.npmignore | 2 years ago | |
LICENSE | 2 years ago | |
README.md | 2 years ago | |
openapi.json | 4 days ago | |
package.json | 4 days ago | |
tsconfig.json | 2 years ago |
README.md
ODIT.Services - LfK-Client (JS Version)
The official library for the LfK backend server. Automagicly™ generated by openapi-typescript-codegen
🛠 Building
Get's automagicly™ build by drone for every new backend release.
Use
Basic example: Get all tracks
import {OpenAPI, TrackService} from "@odit/lfk-client-js";
OpenAPI.BASE = "https://localhost:4010";
console.log(await TrackService.trackControllerGetAll());
Install
Via yarn/npm:
yarn add @odit/lfk-client-js
# Or
npm i @odit/lfk-client-js
Or just copy the folder dist
to your prefered lib folder and import everything you need from dist/index.ts
.