@threadsjs/threads.js
v2.0.0
Published
<div align="center">
Downloads
382
Readme
threads.js
thread.js is a Node.js library that allows you to interact with the Threads API
Features
- Object-oriented
- Performant
- Authenticated
- 100% coverage
Installation and updating
npm install @threadsjs/threads.js
Example usage
const { Client } = require('@threadsjs/threads.js');
(async () => {
const client = new Client({ token: 'token' });
await client.users.get().then(user => {
console.log(user);
});
})();