
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
codehooks
Advanced tools
Codehooks.io is the agent-native backend platform. A complete, isolated backend — API routes, NoSQL database, key-value store, worker queues, cron jobs, and static asset hosting — that deploys in under 5 seconds from a single CLI command.
CLI-First, Zero Friction – Every operation is a CLI command. Your agent doesn't need a browser, a dashboard, or a tutorial. coho deploy and it's live.
Everything Built In – Database, queues, cron, key-value store, auth — it's all there. No provisioning, no wiring, no YAML. No more piecing together API Gateway + Lambda + DynamoDB + SQS.
Sub-5-Second Deploys – Your agent can iterate 50 times in the time it takes other platforms to deploy once.
AI Agent Native – Works seamlessly with Claude Code, Cursor, Codex, Cline, and other AI coding agents. Any tool that can run shell commands can autonomously create, deploy, verify, and iterate on a production backend.
Flat-Rate Pricing – Unlimited compute included. No per-request fees, no surprise bills.
Key Features:
app.get(), app.post(), etc.app.crudlify()Install & sign up / login
npm install codehooks -g
coho login
coho create myproject
cd myproject
import { app, Datastore } from 'codehooks-js';
// REST API routes
app.get('/hello', (req, res) => {
res.json({ message: 'Hello World!' });
});
// Store and query data
app.post('/items', async (req, res) => {
const conn = await Datastore.open();
const result = await conn.insertOne('items', req.body);
res.json(result);
});
// Auto-generate CRUD REST API for any collection
app.crudlify();
export default app.init();
TypeScript is supported, read more here.
npm i codehooks-js
coho deploy
Your API is live at: https://<project>.api.codehooks.io/dev/
Jumpstart with production-ready templates:
coho create myproject --template crud-api-backend
coho create mywebhook --template webhook-stripe-minimal
# Or browse templates interactively:
coho create myproject
Available templates include CRUD APIs, Stripe, Shopify, GitHub, Discord, Twilio, Slack webhooks and more. Browse all at github.com/RestDB/codehooks-io-templates.
Claude Code Plugin:
/plugin marketplace add RestDB/codehooks-claude-plugin
/plugin install codehooks@codehooks
Built-in AI Prompt:
coho prompt # Display the Codehooks development prompt
coho prompt | pbcopy # Copy to clipboard (macOS)
MCP Server for tools without terminal access: codehooks-mcp-server
More info at: https://codehooks.io
FAQs
CLI for codehooks.io - the agent-native backend platform
The npm package codehooks receives a total of 20 weekly downloads. As such, codehooks popularity was classified as not popular.
We found that codehooks demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.