Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lzimul/openfrp-api

OpenFrp-API
https://github.com/lzimul/openfrp-api

Last synced: 5 days ago
JSON representation

OpenFrp-API

Awesome Lists containing this project

README

        

## OpenFrp-API
### A OpenFrp API.

# Install
```text
npm install openfrp-api --save
```

# Usage
```ts
import {info} from 'node:console';
import OpenFrp, {LoginInfo, UserInfo} from 'oaci';

const openFrp: OpenFrp = new OpenFrp('Username', 'Password');
const userInfo: UserInfo = await openFrp.getUserInfo;

const Sign: LoginInfo = await openFrp.Sign;

info(userInfo, Sign);
```