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 🙏

© 2024 – Pkg Stats / Ryan Hefner

prisma-hono-generator

v0.2.3

Published

> **⚠️ Work In Progress**: This project is under active development and not ready for production use. We welcome contributors!

Readme

Prisma Hono Generator 🚀

⚠️ Work In Progress: This project is under active development and not ready for production use. We welcome contributors!

Generate type-safe Hono API routes from your Prisma schema automatically. This generator creates CRUD endpoints with proper validation, error handling, and documentation out of the box.

Vision ✨

  • 🔄 Complete CRUD route generation from Prisma schema
  • 🛡️ Type-safe request/response handling with Zod
  • 📝 OpenAPI/Swagger documentation
  • ⚡ Edge-ready (works with Vercel Edge, Cloudflare Workers)
  • 🔍 Query parameter support
  • 🚨 Built-in error handling

Project Status 🏗️

This project is in early development. Check our Project Board to see what we're working on.

Current Focus

  • [ ] Basic CRUD route generation
  • [ ] Core validation system
  • [ ] Error handling framework
  • [ ] Initial documentation

Contributing 🤝

We're actively looking for contributors! Whether you're interested in coding, documentation, or testing, there's room for you to make an impact.

Prerequisites

  • Node.js >= 16
  • npm >= 7
  • Basic knowledge of TypeScript, Prisma, and Hono

Getting Started

  1. Fork & Clone

    git clone https://github.com/your-username/prisma-hono-generator
    cd prisma-hono-generator
  2. Install Dependencies

    npm install
  3. Start Development

    npm run dev

Project Structure

prisma-hono-generator/
├── src/
│   ├── generator/    # Core generator logic
│   ├── templates/    # Route templates
│   └── utils/        # Helper functions
├── examples/         # Example projects
├── tests/           # Test suite
└── docs/            # Documentation

Development Workflow

  1. 📋 Check Issues for tasks or create a new one
  2. 🔍 Read our Contributing Guide for code standards
  3. ✅ Write tests for your changes
  4. 💻 Make your changes
  5. 🧪 Ensure tests pass (npm test)
  6. 📚 Update documentation if needed
  7. 🚀 Submit a PR

Available Commands

  • npm run dev - Start development server
  • npm run build - Build for production
  • npm run test - Run tests
  • npm run lint - Run linter
  • npm run format - Format code

Communication 💬

  • 💡 Discussions - For ideas and general questions
  • 🐛 Issues - For bugs and feature requests
  • 💬 Discord - For real-time discussion

Roadmap 🗺️

See our detailed Roadmap for planned features and milestones.

Next Major Milestones

  1. Alpha Release

    • Basic CRUD operations
    • Simple validation
    • Basic error handling
  2. Beta Release

    • OpenAPI documentation
    • Advanced filtering
    • Relationship handling
  3. 1.0 Release

    • Production-ready features
    • Complete documentation
    • Comprehensive test coverage

License 📄

MIT © [Your Organization]


Want to Contribute?

We're looking for help with:

  • 🧪 Testing infrastructure
  • 📚 Documentation improvements
  • 💻 Core functionality development
  • 🎨 Example projects
  • 🌐 Website development

Join our community and help build something awesome!

codecov

Commit Message Convention

This project follows Conventional Commits:

  • feat: add new feature - New features (minor version)
  • fix: resolve bug - Bug fixes (patch version)
  • docs: update readme - Documentation only changes
  • style: format code - Changes that don't affect code meaning
  • refactor: improve code - Code changes that neither fix bugs nor add features
  • perf: improve performance - Performance improvements
  • test: add tests - Adding or updating tests
  • chore: update deps - Changes to build process or auxiliary tools
  • BREAKING CHANGE: description - Breaking API changes (major version)

Example with breaking change: