Registry / llm-agents / flowise

flowise

JSON →
library1.0.4jsnpmunverified

Flowise is an open-source, low-code platform for building and deploying AI agents and applications, primarily focused on large language models (LLMs). It offers a visual, drag-and-drop interface for constructing complex AI workflows by connecting various components like LLMs, vector stores, retrievers, and tools. The current stable version is 3.1.2. The project maintains an active development pace with frequent updates and bug fixes, indicated by its versioning and community engagement. Key differentiators include its intuitive graphical user interface (GUI) for creating conversational AI, agents, and RAG applications without extensive coding, simplifying the development process for developers and non-technical users alike. It supports a wide range of integrations and provides robust self-hosting options across various cloud providers, alongside a managed cloud service.

npm install flowise
INSTALL
IMPORT
SIG · FLOWISE
F
flowise
llm-agentsjavascriptv1.0.4
Install
—
Import
—
Disk
—
Pass rate
0/ 6
Env Coverage0 / 6
glibc
18–22
musl
18–22
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
node 18–226 runs
build_error
glibc
node 18–226 runs
build_error
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Flowise
✓ This package is a standalone server application, not a library for programmatic import. It is run via its CLI.
Flowise is designed to be installed globally or run via `npx` as a self-hosted server application, providing a web-based UI and API. It is not intended for direct programmatic import into other JavaScript/TypeScript projects as a module.

This quickstart installs Flowise globally and starts the visual AI agent builder server locally.

npm install -g flowise npx flowise start console.log('Flowise server starting on http://localhost:3000');
Debug
Known issues
gotchaFlowise has strict Node.js engine requirements. Running with an incompatible Node.js version will prevent the application from starting or lead to unexpected behavior.
fix
Ensure your Node.js version is within the supported range (e.g., `>=18.15.0 <19.0.0 || ^20`) as specified in the package.json `engines` field. Use a version manager like `nvm` or `volta` to switch Node.js versions if needed.
affects: >=1.0.0
gotchaWhen using `npx flowise start`, environment variables can be passed directly as command-line arguments (e.g., `--PORT=3000`). For persistent configurations, use a `.env` file in the server directory.
fix
For development or testing, use `npx flowise start --PORT=4000 --DEBUG=true`. For production deployments, create a `.env` file within the Flowise server directory and populate it with key-value pairs (e.g., `PORT=4000`).
affects: >=1.0.0
gotchaThe default port for Flowise is 3000. If this port is already in use by another application, Flowise will fail to start.
fix
Specify a different port using the `PORT` environment variable (e.g., `PORT=4000 npx flowise start` or `npx flowise start --PORT=4000`).
affects: >=1.0.0
Errors
Common errors & fixes
Error: listen EADDRINUSE: address already in use :::3000
Another process is already using the default port (3000) that Flowise attempts to bind to.
fix
Kill the process using port 3000 or start Flowise on a different port: `npx flowise start --PORT=4000`.
Error: The engine "node" is incompatible with this module. Expected version ">=18.15.0 <19.0.0 || ^20". Got "16.x.x"
Your current Node.js version does not meet Flowise's minimum or compatible version requirements.
fix
Upgrade or switch your Node.js version to one supported by Flowise, such as Node.js 18 (>=18.15.0) or Node.js 20. Use `nvm install 20 && nvm use 20` or equivalent.
command not found: flowise
The `flowise` package was not installed globally or is not in your system's PATH.
fix
Ensure Flowise is installed globally via `npm install -g flowise` or run it using `npx flowise start` to execute the latest version without global installation.
Upgrade
Version history
1.0.4latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
27 hits · last 30 days
node
26
OpenAI (training)
1
Resources
flowise — npm install flowise · libregistry