
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
@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)
The npm package @bytebot/sdk receives a total of 0 weekly downloads. As such, @bytebot/sdk popularity was classified as not popular.
We found that @bytebot/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.