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 🙏

© 2025 – Pkg Stats / Ryan Hefner

prisma-hooks-generator

v1.0.1

Published

Automatically generate type-safe TanStack Query hooks and Next.js server actions from your Prisma schema

Readme

Prisma Hooks Generator

Automatically generate type-safe TanStack Query hooks and Next.js server actions from your Prisma schema.

npm version License: MIT

✨ Features

  • 🔄 Full CRUD Operations - Automatically generated hooks for list, get, create, update, and delete
  • 🔒 User-Filtered Hooks - Secure my* hooks that automatically filter by userId
  • 🎯 Type-Safe - Full TypeScript support with Prisma types and Zod validation
  • 🔍 Filters & Querying - Built-in support for where, include, select, and orderBy
  • 📄 Pagination - Offset, cursor, and infinite scroll pagination out of the box
  • Optimistic Updates - Automatic cache updates with rollback on error
  • 🛡️ Server-Side Security - Automatic userId injection and filtering
  • 🎨 Customizable - Override mutation logic with custom business rules

🚀 Quick Start

1. Install

npm install prisma-hooks-generator
# or
pnpm add prisma-hooks-generator
# or
yarn add prisma-hooks-generator

2. Add to Prisma Schema

generator hooks {
  provider = "prisma-hooks-generator"
  output   = "./generated/hooks"
}

3. Generate Hooks

npx prisma generate

4. Use in Your Components

import { useTodos, useCreateTodo } from './prisma/generated/hooks';

function TodoList() {
  const { data, isLoading } = useTodos();
  const createTodo = useCreateTodo();

  if (isLoading) return <div>Loading...</div>;

  return (
    <div>
      {data?.map(todo => (
        <div key={todo.id}>{todo.title}</div>
      ))}
      <button onClick={() => createTodo.mutate({ 
        data: { title: 'New Todo', status: 'TODO' } 
      })}>
        Add Todo
      </button>
    </div>
  );
}

📚 Documentation

🎯 Basic Usage

List Query

import { useTodos } from './prisma/generated/hooks';

function TodoList() {
  const { data, isLoading, error } = useTodos({
    where: { status: 'TODO' },
    orderBy: { createdAt: 'desc' },
  });

  // ...
}

Get by ID

import { useTodo } from './prisma/generated/hooks';

function TodoDetail({ id }: { id: string }) {
  const { data, isLoading } = useTodo(id);
  
  // ...
}

Create Mutation

import { useCreateTodo } from './prisma/generated/hooks';

function CreateTodo() {
  const createTodo = useCreateTodo();

  const handleCreate = () => {
    createTodo.mutate({
      data: {
        title: 'New Todo',
        description: 'Description here',
        status: 'TODO',
      },
    });
  };

  // ...
}

User-Filtered Hooks (My*)

Mark a field with /// @userId in your Prisma schema:

model Todo {
  id     String @id
  title  String
  /// @userId
  userId String
}

Then use the secure my* hooks:

import { useMyTodos, useCreateMyTodo } from './prisma/generated/hooks';

// Automatically filters by current user's ID
const { data } = useMyTodos();

// Automatically injects userId (server-side security)
const createTodo = useCreateMyTodo();

Pagination

// Offset pagination
const { data, pagination } = useTodos({
  pagination: { type: 'offset', page: 1, pageSize: 10 }
});
pagination.nextPage();

// Cursor pagination
const { data, pagination } = useTodos({
  pagination: { type: 'cursor', take: 10 }
});
pagination.nextPage();

// Infinite scroll
const { data, pagination } = useTodos({
  pagination: { type: 'infinite', pageSize: 10 }
});
pagination.fetchNextPage();

🔧 Requirements

  • Node.js 18+
  • Prisma 5.0+
  • Next.js 13+ (App Router)
  • TanStack Query 5.0+
  • next-safe-action 8.0+

📦 What Gets Generated?

prisma/generated/hooks/
├── actions/          # Server actions
│   ├── todo.ts
│   ├── user.ts
│   └── ...
├── hooks/            # React hooks
│   ├── todo.ts
│   ├── user.ts
│   └── ...
├── keys.ts           # Query keys
├── types.ts          # TypeScript types
└── index.ts          # Main exports

🎓 Learn More

🤝 Contributing

Contributions are welcome! Please read our contributing guidelines first.

📄 License

MIT

🙏 Acknowledgments

Built with: