evjs
- Repo stars 11
- License MIT
- Author repo evjs
evjs Agent Skill
Use this skill when developing applications with the evjs framework.
Overview
evjs is a React fullstack framework built on TanStack Router, TanStack Query, and Hono. It provides:
- Server Functions — write backend logic in files (we recommend using the
.server.tssuffix), call from React as if local - Server Routes — build programmatic REST endpoints and APIs using the
createRoute()handler - Query Integration — type-safe
useQuery(getUsers)with auto query keys and transport - Type-safe Routing — TanStack Router with code-defined route modules and route trees
- Plugin System — extend builds with
buildStart,bundlerConfig,transformHtml, andbuildEndhooks - Convention over Configuration — works out of the box, optionally configure via
ev.config.ts
Quick Start
npx @evjs/create-app my-app
cd my-app
npm install
npm run dev
References
For detailed guides on specific topics, see the references/ directory:
- quick-start.md — Scaffolding projects with
npx @evjs/create-app - project-structure.md — Recommended directory structure and domain-driven design (features)
- dev.md — Development server and configuration
- build.md — Production builds
- deploy.md — Deploying to Node, Docker, Deno, and Edge environments
- client-routes.md — Route definitions, layouts, params, loaders, navigation
- server-functions.md — Server functions, queries, mutations, error handling
- server-routes.md — Creating REST API endpoints using programmatic
createRoute() - config.md —
ev.config.tsoptions, defaults, client/server settings
Key Rules
Server Functions (RPC):
- Server function files must start with
"use server";so evjs can transform and register them - Use
useQuery(getUsers)to query server functions directly — type-safe args & data - Arguments are spread:
useQuery(getUser, id)notuseQuery(getUser, [id]) - For mutations, wrap args in objects/arrays:
mutate({ name, email })ormutate([name, email]) ServerErroron server → automatically mapped toServerFunctionErroron client
REST Routes (createRoute()):
- Use
createRoute()for REST API endpoints, webhooks, or standard Web Request/Response handling - If mixing
createRoute()endpoints, you must explicitly configureserver.entryinev.config.ts - Route Paths: Always use string literals for
pathvalues (e.g.,path: "/posts"). The type system rejects broadstringvariables and template strings at compile time.
React Data Loading:
- Route loaders should fetch using:
context.queryClient.ensureQueryData(getFnQueryOptions(myFn)) - Invalidate cache after mutations:
queryClient.invalidateQueries({ queryKey: getFnQueryKey(myFn) }) - Access server function metadata:
myFn.fnId,myFn.fnName,getFnQueryKey(myFn, ...args)
Misc:
- Use
pluginsin config to extend the build pipeline viabuildStart,bundlerConfig,transformHtml, andbuildEnd
- Fluxly category
- Other
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 94 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @afx-team · MIT
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Manual integration
- External API key
- No requirement detected
- Detected OS requirements
- Docker
- Runtime requirements
- Node.js · Deno · Docker
- Detected file/system behavior
-
- Read-only
- Write / modify
- Detected network behavior
- External requests
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
The current SKILL.md does not define a fixed output example. evjs is a React fullstack framework built on TanStack Router, TanStack Query, and Hono. It provides: Server Functions — write backend logic in files (we recommend using the .server.ts suffix), call from React as if local
Quick Start
For detailed guides on specific topics, see the references/ directory: quick-start.md — Scaffolding projects with npx @evjs/create-app project-structure.md — Recommended directory structure and domain-driven design (features)
Server Functions (RPC): Server function files must start with "use server"; so evjs can transform and register them Use useQuery(getUsers) to query server functions directly — type-safe args & data
# evjs Agent Skill
Use this skill when developing applications with the evjs framework.
## Overview
evjs is a React fullstack framework built on TanStack Router, TanStack Query, and Hono. It provides:
- **Server Functions** — write backend logic in files (we recommend using the `.server.ts` suffix), call from React as if local
- **Server Routes** — build programmatic REST endpoints and APIs using the `createRoute()` handler
- **Query Integration** — type-safe `useQuery(getUsers)` with auto query keys and transport
- **Type-safe Routing** — TanStack Router with code-defined route modules and route trees
- **Plugin System** — extend builds with `buildStart`, `bundlerConfig`, `transformHtml`, and `buildEnd` hooks
- **Convention over Configuration** — works out of the box, optionally configure via `ev.config.ts`
## Quick Start
```bash
npx @evjs/create-app my-app
cd my-app
npm install
npm run dev
```
## References
For detailed guides on specific topics, see the `references/` directory:
- [quick-start.md](../docs/docs/quick-start.md) — Scaffolding projects with `npx @evjs/create-app`
- [project-structure.md](../docs/docs/project-structure.md) — Recommended directory structure and domain-driven design (features)
- [dev.md](../docs/docs/dev.md) — Development server and configuration
- [build.md](../docs/docs/build.md) — Production builds
- [deploy.md](../docs/docs/deploy.md) — Deploying to Node, Docker, Deno, and Edge environments
- [client-routes.md](../docs/docs/client-routes.md) — Route definitions, layouts, params, loaders, navigation
- [server-functions.md](../docs/docs/server-functions.md) — Server functions, queries, mutations, error handling
- [server-routes.md](../docs/docs/server-routes.md) — Creating REST API endpoints using programmatic `createRoute()`
… Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> Overview → Quick Start → References → Key Rules
terms -> Server Functions · Server Routes · Query Integration · Type-safe Routing · Plugin System · Convention over Configuration · Server Functions (RPC) · REST Routes (createRoute())
files/cmd -> .server.ts · createRoute() · useQuery(getUsers) · buildStart · bundlerConfig · transformHtml · buildEnd · ev.config.ts
body sha256 -> 8e82bc61ab68
Decide Fit First
Design Intent
How To Use It
Boundaries And Review