Skip to content

thisisdice/threads.js

 
 

Repository files navigation

threads.js

thread.js is a Node.js library that allows you to interact with the Threads API

  • Performant
  • Authenticated

Installation

npm install @threadsjs/threads.js

Example usage

const { getToken, Client } = require('@threadsjs/threads.js');

const token = await getToken('username', 'password')
const client = new Client({ token: 'token' });

await client.getUser('25025320').then(user => {
  console.log(user);
});

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 59.1%
  • TypeScript 40.9%