https://github.com/noook/ffn-client
https://github.com/noook/ffn-client
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/noook/ffn-client
- Owner: noook
- License: mit
- Created: 2021-11-01T17:34:56.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-06T11:38:59.000Z (over 4 years ago)
- Last Synced: 2025-08-02T00:48:32.210Z (11 months ago)
- Language: TypeScript
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ffn-client
## Installation
```sh
$ npm i shlink-client
# Or with yarn
$ yarn add shlink-client
```
## API
### SwimmerProfile
```ts
import { SwimmerProfile } from 'ffn-client';
const profile = new SwimmerProfile('1979311');
profile.fetch()
.then(data => JSON.stringify(data, null, 2))
.then(console.log);
```
See examples in [this directory](./examples).
### More to come ...