Deploy functions from the browser with the Monaco editor
Edit, layer, route, and deploy from the browser—container-backed execution stays the isolation unit.
Situation
Local setup tax
Docker, language managers, and secret files drift across laptops; onboarding slows before anyone writes business logic.
Small fixes should not require a 30-minute environment ritual.
Sharp edges
Why not only local dev
Local parity gaps hide bugs until deploy.
Some teams are remote on locked-down devices where installs are painful.
How Inquir fits
What browser deploy adds
The built-in Monaco editor (called out in the README) edits the same function bundles the worker executes—save, deploy, invoke from one surface.
Pair with the `lambda` CLI for automation; browser deploy is for fast iteration and pair debugging during incidents.
Capabilities
Workflow pieces
Fast feedback
Iterate on handlers with fewer context switches.
Shared visibility
Pair on the same deployment surface during incidents.
Templates
Start from examples for HTTP, cron, and agent tools.
Steps
How to deploy functions from the Inquir browser editor
Edit, save, and ship without a local toolchain for every small change.
Edit
Change handler code with live syntax support.
Save
Persist versions through the platform instead of ad hoc SCP.
Trace
Jump from a failure notification to execution logs quickly.
Code example
Mindset
Treat the browser as the control plane, not a toy runtime.
// edit → save → deploy → invoke → read logs (repeat)Fit
Good fit
When to use
- Small teams
- Quick fixes during outages
- Onboarding workshops
When not to use
- Regimes that mandate offline-only authoring
FAQ
FAQ
Is browser deploy only for prototypes?
Teams use it for production hotfixes and onboarding too; pair it with review policy—Git mirrors or export workflows—when compliance demands an audit trail.
How do I keep parity with local development?
Align environment variables and handler contracts; run integration tests against a staging workspace that matches production gateway settings.
What about large dependencies or native modules?
Heavy trees still ship as container artifacts; browser deploy changes who triggers the build, not the need for reproducible bundles.