Skip to content

threadsjs/threads.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

threads.js

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

npm version Downloads Average time to resolve an issue Percentage of issues still open

FeaturesInstallation and updatingUsageMethods

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);
	});
})();

Releases

No releases published

Packages

No packages published