Flow - low-code visual editor Beta
Seamlessly create AI and non-AI apps using an advanced low-code visual editor. By using nodes and linking them, you can develop any app with horizontal and vertical scaling at the edge within minutes, utilizing any JavaScript package.
Unreal customization
Create custom nodes using JavaScript with any npm package.
Serverless
Execute flow on specified region, with scaling
Edge
Execute flow world-wide on edge
Easy to use flow through our API
import { FlowClient } from "@nouro/flow"
const client = new FlowClient({
apiKey: process.env.FLOW_API_KEY as string
})
const edge = client.edge();
const response = await edge.execute({
uuid: "32753e86-6f3a-465e-9662-62a6ddaaccd4",
session: {
// Any uuid as session, for example flow uuid
id: "32753e86-6f3a-465e-9662-62a6ddaaccd4"
},
variables: {
message: "Hello!"
}
});
const decoder = new TextDecoder();
const stream = response.toStream();
for await (const chunk of stream) {
console.log(decoder.decode(chunk))
}
Features you may also like
File Storage
Securely store and manage your files.
Community
Share your flows, custom nodes, modules and layers to other users.
Variables
Easily manage and use variables.
Auto Typings
Automatic type generation for your nodes in editor.
Credentials
Securely store and use credentials.
Logging
Track and record application events.
Live Logging
View real-time logs of your app.
Analytics
Gain insights with powerful analytics.
Public URLs
Generate and share public URLs of flows.