
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
thread-link
Advanced tools
This library provides a client for interacting with Thread Link's public and admin endpoints. It includes both a programmatic interface and command-line tools for ease of use.
You can install the library via npm:
npm install thread-link
The public client provides methods to interact with Thread Link's public endpoints. Here's an example of how to use the public client:
import { PublicClient } from 'thread-link';
const publicClient = new PublicClient();
publicClient.getMessages()
.then(messages => console.log(messages))
.catch(error => console.error(error));
The admin client provides methods to interact with Thread Link's admin endpoints. Here's an example of how to use the admin client:
import { AdminClient } from 'thread-link';
const adminClient = new AdminClient();
adminClient.getAccounts()
.then(accounts => console.log(accounts))
.catch(error => console.error(error));
The library includes command-line interfaces (CLI) for interacting with both public and admin endpoints.
The public CLI can be used to interact with public endpoints. Here's an example:
npx thread-link get-messages
get-messages: Retrieve messagesget-threads: Retrieve threadsget-topics: Retrieve topicsThe admin CLI can be used to interact with admin endpoints. Here's an example:
npx thread-link-admin get-accounts
get-accounts: Retrieve accountsget-provider-configurations: Retrieve provider configurationsWe welcome contributions!
This project is licensed under the MIT License. See the LICENSE file for details.
FAQs
ThreadLink client
We found that thread-link demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.