Install
$ agentstack add skill-jarle-bun-skills-bun-guides-deployment-render ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Deploy a Bun application on Render
Render is a cloud platform that lets you flexibly build, deploy, and scale your apps.
It offers features like auto deploys from GitHub, a global CDN, private networks, automatic HTTPS setup, and managed PostgreSQL and Redis.
Render supports Bun natively. You can deploy Bun apps as web services, background workers, cron jobs, and more.
As an example, let's deploy a simple Express HTTP server to Render.
Create a new GitHub repo named myapp. Git clone it locally.
``sh theme={"theme":{"light":"github-light","dark":"dracula"}} git clone git@github.com:my-github-username/myapp.git cd myapp ``
Add the Express library.
``sh theme={"theme":{"light":"github-light","dark":"dracula"}} bun add express ``
Define a simple server with Express:
```ts app.ts icon="https://mintcdn.com/bun-1dd33a4e/nIz6GtMH5K-dfXeV/icons/typescript.svg?fit=max&auto=format&n=nIz6GtMH5K-dfXeV&q=85&s=5d73d76daf7eb7b158469d8c30d349b0" theme={"theme":{"light":"github-light","dark":"dracula"}} import express from "express";
const app = express(); const port = process.env.PORT || 3001;
app.get("/", (req, res) => { res.send("Hello World!"); });
app.listen(port, () => { console.log(Listening on port ${port}...); }); ```
Commit your changes and push to GitHub.
``sh terminal icon="terminal" theme={"theme":{"light":"github-light","dark":"dracula"}} git add app.ts bun.lock package.json git commit -m "Create simple Express app" git push origin main ``
In your Render Dashboard, click New > Web Service and connect your myapp repo.
In the Render UI, provide the following values during web service creation:
| | | | ----------------- | ------------- | | Runtime | Node | | Build Command | bun install | | Start Command | bun app.ts |
That's it! Your web service will be live at its assigned onrender.com URL as soon as the build finishes.
You can view the deploy logs for details. Refer to Render's documentation for a complete overview of deploying on Render.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: jarle
- Source: jarle/bun-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.