
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@vizlook/sdk
Advanced tools
Official Vizlook Javscript SDK.
https://www.npmjs.com/package/@vizlook/sdk
npm install @vizlook/sdk
import Vizlook from "@vizlook/sdk";
const vizlook = new Vizlook({
apiKey: process.env.VIZLOOK_API_KEY,
});
Performs a video search on the Vizlook system.
const response = await vizlook.search("how to be productive", {
maxResults: 5,
startPublishedDate: "2025-08-19T15:01:36.000Z",
endPublishedDate: Date.now(),
includeTranscription: true,
includeSummary: true,
});
Generates an answer to a query.
const response = await vizlook.answer("how to be productive", {
includeTranscription: true,
});
Streams an answer to a query.
const streamResponse = vizlook.streamAnswer("how to be productive");
let answer = "";
for await (const chunk of streamResponse) {
switch (chunk.type) {
case "answer-chunk":
answer += chunk.data;
console.log("Answer chunk:", chunk.data);
break;
case "data-citations":
console.log("Citations:", chunk.data.citations);
break;
case "data-cost":
console.log("Cost:", chunk.data.dollarCost);
break;
case "error":
console.log("Error:", chunk.data.errorText);
break;
}
}
console.log("Final answer:", answer);
Retrieves contents of videos based on specified URLs.
const response = await vizlook.getVideoContents(
"https://www.youtube.com/watch?v=QdBokRd2ahw",
{
crawlMode: "Always",
includeTranscription: true,
includeSummary: true,
}
);
https://docs.vizlook.com/documentation/api-reference/search
Feel free to submit pull requests. For larger-scale changes, though, it's best to open an issue first so we can deliberate on your plans.
FAQs
Vizlook JavaScript SDK
We found that @vizlook/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.