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

next-anvil

v1.2.0

Published

CLI tool for the Anvil framework - a Next.js framework for creating admin dashboards

Readme

Next-anvil

A Next.js framework for building admin dashboards. Next-anvil provides schema definitions, form field components, and a CLI tool to scaffold resources.

Installation

CLI Tool

Install globally:

npm install -g next-anvil

Or use it locally in your project:

npm install --save-dev next-anvil

Library

Install as a dependency in your Next.js project:

npm install next-anvil

CLI Usage

Create a Resource

Generate resource scaffolding files:

anvil forge:resource <name>

Example:

anvil forge:resource product

This creates:

  • src/lib/resources/products/index.ts - Resource definition
  • src/lib/resources/products/form.ts - Form schema
  • src/lib/resources/products/table.ts - Table schema

Run Database Migrations

anvil db:migrate

This executes npx prisma migrate dev && npx prisma generate.

Library Usage

Import Styles

First, import the compiled Tailwind CSS:

import "next-anvil/styles.css";

Defining Field Schemas

Next-anvil provides field definition functions for building form schemas:

import { text, email, number, select, date, textarea } from "next-anvil/fields";
import { defineFormSchema } from "next-anvil/form";

const formSchema = defineFormSchema({
  fields: {
    name: text({
      label: "Name",
      required: true,
      placeholder: "Enter name",
    }),
    email: email({
      label: "Email",
      required: true,
      unique: true,
    }),
    age: number({
      label: "Age",
      min: 0,
      max: 120,
    }),
    status: select({
      label: "Status",
      options: [
        { value: "active", label: "Active" },
        { value: "inactive", label: "Inactive" },
      ],
    }),
    birthDate: date({
      label: "Birth Date",
    }),
    bio: textarea({
      label: "Biography",
      rows: 4,
    }),
  },
});

Defining Table Schemas

import { defineTableSchema } from "next-anvil/table";

const tableSchema = defineTableSchema({
  columns: [
    { name: "id", label: "ID", visible: "never" },
    { name: "name", label: "Name" },
    { name: "email", label: "Email" },
    { name: "createdAt", label: "Created At" },
  ],
});

Defining Resources

import { defineResource } from "next-anvil/resource";
import form from "./form";
import table from "./table";

const productResource = defineResource({
  model: "Product",
  label: "Products",
  form,
  table,
});

Using Field Components

Next-anvil provides React components for rendering form fields:

import { TextField, EmailField, NumberField } from "next-anvil/components";

function MyForm() {
  const [formData, setFormData] = useState({});

  return (
    <form>
      <TextField
        fieldName="name"
        fieldSchema={formSchema.fields.name}
        value={formData.name}
        onChange={(value) => setFormData({ ...formData, name: value })}
      />
      <EmailField
        fieldName="email"
        fieldSchema={formSchema.fields.email}
        value={formData.email}
        onChange={(value) => setFormData({ ...formData, email: value })}
      />
    </form>
  );
}

Available field components:

  • TextField
  • EmailField
  • NumberField
  • SelectField
  • DateField
  • TextareaField
  • FieldWrapper (base wrapper component)

Package Exports

Next-anvil provides the following exports:

  • next-anvil/fields - Field schema definition functions (text, email, number, select, date, textarea, hidden)
  • next-anvil/form - Form schema utilities (defineFormSchema)
  • next-anvil/table - Table schema utilities (defineTableSchema)
  • next-anvil/resource - Resource definition utilities (defineResource)
  • next-anvil/components - React field components
  • next-anvil/styles.css - Compiled Tailwind CSS

Requirements

  • Node.js 18.0.0 or higher
  • React 18.0.0 or higher
  • Next.js 14.0.0 or higher
  • Prisma (for database operations)

License

ISC