
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
@bytebot/sdk
Advanced tools
[](https://www.npmjs.com/package/@bytebot/sdk) [](https://github.com/fern-api/fern)
The Bytebot Node.js library provides access to the Bytebot API from JavaScript/TypeScript.
You can find Bytebot's complete API docs at docs.bytebot.ai.
npm install --save @bytebot/sdk
# or
yarn add @bytebot/sdk
import { BytebotClient, Table, Column, Text } from "@bytebot/sdk";
const bytebot = new BytebotClient({
apiKey: "YOUR_API_KEY",
});
async function run() {
// Start a new session
const startSessionResponse = await bytebot.browser.startSession("https://www.ycombinator.com/companies");
const sessionId = startSessionResponse.sessionId;
console.log("startSessionResponse", startSessionResponse);
// Act actions
await bytebot.browser.act({ sessionId, prompt: "Click on the W24 filter" }).then((res) => {
console.log("act", res);
});
await bytebot.browser
.extract({
sessionId,
schema: Table([
Column("Company Name", Text("The name of the company")),
Column("Company Description", Text("The description of the company")),
]),
})
.then((res) => {
console.log("extract", res);
});
// End the session
await bytebot.browser.endSession(sessionId);
}
run().catch(console.error);
This SDK is in beta, and there will be breaking changes between versions without a major version update.
FAQs
[](https://www.npmjs.com/package/@bytebot/sdk) [](https://github.com/fern-api/fern)
We found that @bytebot/sdk 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.