
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
flowise-sdk
Advanced tools
A TypeScript SDK for interacting with the Flowise API.
npm install flowise-sdk
import { FlowiseClient } from 'flowise-sdk';
const flowise = new FlowiseClient({ baseUrl: 'http://localhost:3000' });
async function main() {
const completion = await flowise.createPrediction({
chatflowId: '<id>',
question: "hello",
streaming: true
});
for await (const chunk of completion) {
console.log(chunk);
}
}
main();
FlowiseClientThe main class for interacting with the Flowise API.
new FlowiseClient(baseUrl?: <your-base-url>, apiKey: <chatflow-apikey>)
baseUrl: Optional. The base URL for the Flowise API. Defaults to 'http://localhost:3000'apiKey: Optional. The API Key used to access the chatflowcreatePrediction(params: PredictionParams)Creates a new prediction.
params: An object containing the following properties:
chatflowId: string - Chatflow ID to execute predictionquestion: string - The question to ask.streaming: boolean (optional) - Whether to stream the response.chatId: string (optional) - Chat ID of the sessionoverrideConfig: object (optional) - Override configurationhistory: array (optional) - Array of prepended messagesThis project is licensed under the MIT License - see the LICENSE file for details.
FAQs
Flowise SDK for streaming API responses.
The npm package flowise-sdk receives a total of 913 weekly downloads. As such, flowise-sdk popularity was classified as not popular.
We found that flowise-sdk demonstrated a not healthy version release cadence and project activity because the last version was released 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.