# perry-examples **Repository Path**: kelzjl/perry-examples ## Basic Information - **Project Name**: perry-examples - **Description**: No description available - **Primary Language**: TypeScript - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-05-03 - **Last Updated**: 2026-05-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Perry Examples Runnable demo projects for [Perry](https://github.com/PerryTS/perry) — the native TypeScript compiler. Each subdirectory is a standalone project showing how to use a popular Node.js framework or library compiled with Perry. | Directory | Stack | |-----------|-------| | [`blockchain-demo`](./blockchain-demo) | Cryptography demo (`@noble/curves`, `@noble/hashes`) | | [`express-postgres`](./express-postgres) | Express + PostgreSQL | | [`fastify-redis-mysql`](./fastify-redis-mysql) | Fastify + Redis + MySQL | | [`hono-mongodb`](./hono-mongodb) | Hono + MongoDB | | [`koa-redis`](./koa-redis) | Koa + Redis | | [`nestjs-typeorm`](./nestjs-typeorm) | NestJS + TypeORM | | [`nextjs-prisma`](./nextjs-prisma) | Next.js + Prisma | ## Running an example ```bash cd hono-mongodb npm install perry build src/index.ts -o server ./server ``` See the [Perry docs](https://docs.perryts.com) for installation and usage. ## Note on Dependabot alerts These examples pin specific framework versions to keep the demos reproducible, so they may not always track the latest security advisories. **Don't copy these `package.json` files into production** without first running `npm audit` and bumping anything flagged. The demos exist to show how Perry compiles each framework — not to ship secure defaults. ## License MIT — see [LICENSE](./LICENSE).