npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@nevr/generator

v0.3.5

Published

Code generators for Nevr - Prisma schema, TypeScript types, API client

Readme


🎯 What It Does

The generator takes your Nevr entity definitions and produces:

  • Prisma Schema — Complete database schema with relations
  • OpenAPI Spec — Swagger/OpenAPI 3.0 specification
  • TypeScript Types — Fully typed interfaces (deprecated, use $Infer)
  • API Client — Ready-to-use fetch wrapper (deprecated, use createClient)

📦 Installation

npm install @nevr/generator

Note: Usually used via @nevr/cli. Direct usage is for advanced cases.


🚀 Quick Usage

import { generateSchema } from "@nevr/generator"
import { user, post } from "./entities"

// Generate Prisma schema
generateSchema([user, post], {
  provider: "postgresql",
  output: "./prisma",
})

📖 API Reference

generateSchema(entities, options)

Main function to generate complete Prisma schema.

generateSchema(entities, {
  provider: "sqlite" | "postgresql" | "mysql",
  output: "./generated",
  useCache: true,  // Enable incremental builds
})

generatePrismaSchema(entities, options)

Generate only the Prisma schema string.

const schema = generatePrismaSchema(entities, {
  provider: "postgresql",
})
console.log(schema) // Complete .prisma content

generatePrismaModels(entities)

Generate only model definitions (no datasource/generator blocks).

const models = generatePrismaModels(entities)
// model User { ... }
// model Post { ... }

generatePrismaHeader(options)

Generate only the datasource and generator blocks.

  url: 'env("DATABASE_URL")',
})

generateOpenAPI(entities, options)

Generate OpenAPI 3.0 specification.

const spec = generateOpenAPI(entities, {
  info: { title: "My API", version: "1.0.0" },
  servers: [{ url: "http://localhost:3000" }],
  outPath: "./openapi.json",
  security: true // Add bearer auth scheme
})

⚡ Incremental Caching

The generator caches entity hashes to skip unchanged entities:

.nevr-cache.json
├── version: "1.0.0"
├── entities: { user: "abc123...", post: "def456..." }
└── lastGenerated: "2024-01-15T10:30:00Z"

Disable with useCache: false.


⚠️ Deprecated Functions

These functions still work but are deprecated in favor of type inference:

| Deprecated | Replacement | |------------|-------------| | generateTypes() | Use $Infer pattern | | generateClient() | Use createClient<typeof api>() |

// ❌ Old way
const types = generateTypes(entities)

// ✅ New way - types inferred automatically
import type { API } from "./server"
type User = API["$Infer"]["Entities"]["user"]

📚 Related

| Package | Description | |---------|-------------| | nevr | Core framework | | @nevr/cli | CLI interface | | create-nevr | Project scaffolder |


📄 License

MIT © Nevr Contributors