This repository contains Primate app examples. They correspond to https://github.com/primate-run/primate/tree/master/apps, with the main difference being that the apps are self-contained and dependencies come directly from npm instead of the workspace.
You can thus copy them and use them as blueprints.
Start an app in development mode.
# Node
npx primate
# Deno
deno run -A npm:primate
# Bun
bunx --bun primateBuild an app for production.
# Node
npx primate build
# Deno
deno run -A npm:primate build
# Bun
bunx --bun primate buildRun a previously built app.
# Node
npx primate serve
# Deno
deno run -A npm:primate serve
# Bun
bunx --bun primate serveMIT