Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lzimul/openfrp-api
OpenFrp-API
https://github.com/lzimul/openfrp-api
Last synced: 5 days ago
JSON representation
OpenFrp-API
- Host: GitHub
- URL: https://github.com/lzimul/openfrp-api
- Owner: lZiMUl
- License: gpl-3.0
- Created: 2023-10-22T14:10:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-16T19:24:11.000Z (11 months ago)
- Last Synced: 2025-01-18T19:38:21.520Z (18 days ago)
- Language: TypeScript
- Size: 52.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
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);
```