A structure-oriented and unique LCDP (Low-Code Development Platform).
Try it now at quasi-studio.vercel.app. An example project is here.
- Designed for professional developers
- Intuitive and easy to use
- Build with Refina.js
Licensed under GNU GPL v3
Designer UI | |
---|---|
Quasi Graph | |
Output Preview |
- Special Blocks: Used to process data and control the flow of the application.
- Component Blocks: Used to build the layout of the application.
- View Blocks: Used to split and reuse the layout of the application.
There are several sockets in a block, and they are used to connect to other blocks.
Connect one socket to another.
Only the same type of Socket and Line can be connected to each other.
Control the layout.
The socket is square, and the line is brown.
"Pull" data from one block to another.
The socket is semi-circular, and the line is blue.
"Push" an event from one block to another.
The socket is triangular, and the line is green.
- Think about the layout and logic of your app
- Drag the corresponding Component Block to the graph
- Connect these blocks with Layout Line
- Handle events. Connect the event from the Component Block to the block that handles the event
- Get data. Connect the data from the Component Block to the block that needs the data
👁 Quick preview
↩️ Undo /↪️ Redo
⬇️ Import / ⬆️ Export / 🔄️ Autosave
✏️ Embed Monaco Editor
📸 Generate high-resolution images of your design graph
- Most of the low-code platforms are coarse-grained, which means they provide a set of predefined components and you can only use them to build your app.
- Quasi Studio is fine-grained, which means you can build your own components and use them in the graph.
- However, unlike Scratch, Quasi Studio is designed for professional developers and focuses on development efficiency.
- Traditional low-code platforms separate layout and logic, which means you can only use the visual editor to design the layout and write code to implement the logic.
- Quasi Studio mixes layout and logic, which means you can use the visual editor to design the layout and implement the logic at the same time.
This is a monorepo, and the directory structure is as follows:
browser-tailwind
: Tailwind Compiler for the browser.compiler
: Compile the graph to the runnable code.mdui2-dts
: Generate a single DTS file of MdUImonaco-editor
: Monaco Editor as a Refina component.- ⭐
northstar
: The major part of Quasi Studio. runtime
: Runtime for the Quasi Studio generated app.- ⭐
visual-flow
: DnD library for building blocks, lines, and sockets.
Together with Refina.js.
graph LR
A(refina/core) --> B(refina/fluentui)
M(quasi-dev/monaco-editor) ---> G
A ---> M
A --> C(refina/mdui)
A --> D(refina/router)
B --> E(quasi-dev/visual-flow)
B --> F(quasi-dev/block-data)
E --> G("quasi-dev/northstar (LCDP)")
F --> G
F --Provide data--> H(quasi-dev/compiler)
T(quasi-dev/browser-tailwind) --Invoked by--> H
H --Invoked by--> G
H -.Generate.-> I([User's App])
A --Runtime dep----> I
B --Runtime dep----> I
C ---> R(quasi-dev/runtime) --Runtime dep--> I
D --Runtime dep----> I
class A,B,C,D refina;
classDef refina stroke:#ff0;
style G stroke-width:3px,stroke:#91C1EB;
style I stroke-width:3px,stroke:lightgreen;
pnpm dev