Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@edgepod/server

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@edgepod/server

Server component of Edgepod - Handles API requests, database interactions, and server-side logic

latest
Source
npmnpm
Version
0.0.8
Version published
Weekly downloads
16
-64.44%
Maintainers
1
Weekly downloads
 
Created
Source

@edgepod/server

Server component for EdgePod. Provides the edgePodFetch handler, BaseEdgePodEngine Durable Object, and Drizzle-based schema builders for building reactive, edge-hosted backends on Cloudflare Workers.

Install

pnpm add @edgepod/server

Workflow

After running edgepod init, the server entrypoint is 100% auto-generated in edgepod/.generated/server.ts. You do not need to edit it.

Your day-to-day work is just:

  • Define tables in edgepod/schema.ts
  • Define functions in edgepod/functions/index.ts
  • Run edgepod migrations after schema changes
  • Run pnpm edgepod:deploy to ship

Never edit files in edgepod/.generated/ — they are overwritten by the CLI.

Schema Exports

Import schema builders from @edgepod/server/schema — safe to use in Node.js (CLI tooling, migrations) and Workers:

import { table, text, integer, eq, sql } from "@edgepod/server/schema";

Data Residency

Pass jurisdiction or location hints to edgePodFetch in your generated server file:

edgePodFetch(request, env, { jurisdiction: "eu" });

FAQs

Package last updated on 17 May 2026

Did you know?

Socket

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.

Install

Related posts