Pulse Editor is a modular, cross-platform, AI-powered productivity platform with federated app collaboration and extensible workflows.
Important
🎉🎉Pulse Editor is now in beta 2. And we won a hackathon! Read more here.
Pulse Editor is still in its early development stage. We are trying hard to make sure everything works as expected for all different platforms. See Beta Release Roadmap below.
By leveraging Module Federation, Pulse Editor allows federated app collaboration and extensible workflows with AI agents on all platform.
Pulse Editor is not just another drag-and-drop backend automation tool, it is a full-stack automation platform -- a true app OS that unifies both frontend and backend in one visual environment.
Full-stack app node (e.g. OpenCut) |
Full-stack app workflow |
Running vibe coding workflow in canvas view allows you to develop software on any device, with help of vibe coding agent.
You can run workflows with Pulse App ComfyUI Workflow.
With Pulse Editor, you can manage your file system within interface.
On desktop, you can choose to open workspace in either local storage or remote container.
On web/mobile, you will have to start a remote workspace first.
- Create a new project or select a project
Create project:Select project:
- Create a new workspace or select a workspace
Create workspace:Select workspace:
🎉🎉Pulse Editor is now in beta 2.
We plan to have 2-3 major beta release stages before we reach a stable release version.
Pulse Editor is now available on Android and Desktop (tested for Windows, needs more testing for Linux and MacOS).
Pulse Editor Marketplace now is available for editor users. Simply download Pulse Editor, and view all available extensions in the extension page. You can also browser and search extensions in Marketplace Web (WIP). As for now, the following extensions are available:
- (Official) Pulse Editor Code View (MIT)
- (Official) Pulse Editor Terminal (MIT)
- (Official) Pulse Editor Image Editor (MIT)
- (Official) Pulse Editor Video Editor (MIT)
Pulse Editor Marketplace Developer Access is now open for application. If you'd like to develop and publish your own extensions to Pulse Editor Marketplace, submit a form here Developer Beta Access.
Even if you haven't got access to publish your extensions to the marketplace, you can still explore Pulse Editor platform by developing your own extensions locally. This is a great opportunity to get an early look at Pulse Editor and start experimenting with its capabilities! See Extension Development below.
Pulse Editor beta 2 is now out. Many changes are added in this new release. And, Pulse Editor won a hackathon! Big thanks to AI Hacker House in Shanghai for the hackathon opportunity for me to showcase this project in front of dozens of AI product enthusiasts and entrepreneurs!
What's new in this release:
- Support frontend and backend module federation to allow developers to publish full-stack apps on Pulse Editor platform.
- Add workflow canvas to allow collaboration among community full-stack apps.
- Introduce Pulse Editor cloud platform. With the cloud platform, you can start remote dev container and use it to run automation workflows.
- Support web editor. Check it out at https://web.pulse-editor.com.
- Publish mobile app to Google Play (in-progress).
- Allow users to publish workflows to marketplace.
- Introduce Pulse Editor platform AI assistants. With the platform AI assistant, you can create productivity workflow effortless via chatting. The platform AI assistant will suggest best fitted apps for you requirements and execute the workflow on your behalf.
- Updates to npm packages, cli tool, and Pulse app full-stack React template.
Planned items:
- More AI features
- MacOS & Linux & iOS support
- Marketplace payment system (allow extension app developers to monetize)
- More official workflows
- More to be announced!
The documentation and user guide will be available at https://docs.pulse-editor.com. For documentation contributors, the docs source repository is located here.
There is a web deployment at https://web.pulse-editor.com
Android client is available in release page.
Current we only support Android, although it is technically possible to have an iOS build (see developer guide below).
For detailed mobile user guide, check out Mobile User Guide
Linux, MacOS, Windows clients are available in release page.
Note
Only Windows is tested in beta release.
For detailed desktop user guide, check out Desktop User Guide
A VSCode Webview Extension with limited features is available here.
For detailed VSCode extension user guide, check out VSCode Extension User Guide
Nodejs 20
You can install dependencies for all workspaces using
npm i
Or, for a specific workspace. e.g. for web:
npm i --workspace=web
When dependencies in desktop/, use Electron's nodejs instead of local nodejs.
Make sure you have installed necessary build tools.
Nodejs Windows Installer should already include windows-build-tools. In addition, make sure Windows SDK is also available:
sudo apt install -y make python build-essential
Then you can rebuild native dependencies in desktop/ using.
cd desktop
npm run rebuild-native
Electron may warn you need NODE_MODULE_VERSION xxx. If you have electron@35.0.2 installed (check desktop/package.json), you can run:
electron-rebuild -v 35.0.2
Start development:
npm run desktop-dev
Build production release:
npm run desktop-build
Pulse Editor uses Next.js as the frontend (and backend -- TBD). You can get started with local development by running:
npm run web-devPulse Editor uses Capacitor.js to create mobile apps on Android and iOS. To develop mobile app locally, try the following.
Start development:
npm run android-dev
Build production release
# Production
npm run android-buildPulse Editor uses Electron.js to create desktop apps on Windows, Mac and Linux. To develop desktop app locally, run:
# Development
npm run desktop-dev
# Production
npm run desktop-buildIf you run npm run desktop-build for a production build, you can find an executable file inside build/desktop.
Warning
The code in vscode-extension might be out of date, as it was made for an Alpha Demo.
Support for using Pulse Editor as an extension in VSCode might be discontinued, or get simply replaced with a webview.
Pulse Editor uses VSCode Webview API to create a VSCode Extension. To develop VScode Extension locally, open the vscode-extension in a separate VSCode window. Then press F5 to launch debug task.
Note that you will also need to run the Nextjs server locally during development.
Pulse Editor uses Modular Federation to deliver its modular extensions. For guides on how to start developing and using extensions locally, check out our React template repository.
Some of our official extensions are also open-source. Feel free to take examples from them and/or contribute to them.
Use changeset to version each release of npm library.
Enter/Exit prerelease
npx changeset pre enter alpha
npx changeset pre exitAdd a new version
npx changesetCommit the new version
npx changeset versionPublish npm libraries
# Run build before publishing
npm run shared-utils-build && npm run react-api-build
npx changeset publishFor developing main client and using recently modified npm libraries without publishing, you can change web/package.json to have the following:
"@pulse-editor/shared-utils": "../npm-packages/shared-utils",Make sure to change back if using published versions.











