trender-client
Version:
Official Trender client API
36 lines (24 loc) • 1.49 kB
Markdown
<p align="center">Official Trender client for node.js</p>
<p align="center">
<a href="https://trenderapp.com/"><b>Website</b></a> •
<a href="https://doc.trenderapp.com"><b>Documentation</b></a>
</p>
<div align="center">
[](https://www.npmjs.org/package/trender-client)
[](https://gitpod.io/#https://github.com/trender-client/trender-client)
[](https://packagephobia.now.sh/result?p=trender-client)
[](https://npm-stat.com/charts.html?package=trender-client)
[](https://gitter.im/mzabriskie/trender-client)
[](https://snyk.io/test/npm/trender-client)
</div>
# trender-client
Official Trender client made in Typescript
## Easy to use
```js
import Client from 'trender-client';
const client = new Client({
token: "your token"
})
const current_user = await client.informations();
console.log(current_user)
```