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

easy-adminpanel

v3.0.1

Published

Next.js projeleri için otomatik PostgreSQL tablo yönetimi ve CRUD arayüzü

Readme

Easy Admin Panel

This package is an admin panel solution that can be easily integrated into your Next.js projects, creating an automatic CRUD interface for your PostgreSQL database.

Features

  • Easy Setup: Integrates into your Next.js project with a single command
  • Dynamic Table Management: Automatically detects PostgreSQL tables in your application
  • Automatic CRUD Interfaces: Provides listing, adding, editing, and deletion screens for selected tables
  • Modern UI: Features a modern interface using Tailwind CSS and ShadCN UI
  • Secure: Runs within your own project, giving you full access control

Installation

# With NPM
npm install easy-adminpanel

# or with Yarn
yarn add easy-adminpanel

# or with PNPM
pnpm add easy-adminpanel

After installation, run the following command to integrate the admin panel into your project:

npx easy-adminpanel init

or with custom options:

npx easy-adminpanel init --route=/admin --envVar=DATABASE_URL --title="Custom Admin Panel"

Usage

After installation, follow these steps:

  1. Add your database connection information to the .env file:

    POSTGRES_URL="postgres://user:password@host:port/database"
  2. Start your application:

    npm run dev
  3. Access the admin panel from your browser:

    http://localhost:3000/easy-adminpanel
  4. On first use, select the tables you want to manage.

Integration with Your Next.js Project

To integrate programmatically, you can use it in your next.config.js file as follows:

const { setupEasyAdminPanel } = require('easy-adminpanel');

/** @type {import('next').NextConfig} */
const nextConfig = {
  // ... your existing configuration
};

module.exports = setupEasyAdminPanel(nextConfig, {
  route: '/admin',   // Optional: URL where admin panel will be accessible
  envVar: 'DATABASE_URL', // Optional: Environment variable for database connection string
  title: 'Admin Panel', // Optional: Panel title
});

Features

Table Management

  • Select which database tables to include in the admin panel
  • Automatic schema detection for all tables
  • Dynamic form generation based on column types

CRUD Operations

  • List: View all records with pagination
  • Create: Add new records with auto-generated forms
  • Update: Edit existing records with pre-filled forms
  • Delete: Remove records with confirmation dialog

User Interface

  • Clean, responsive design using Tailwind CSS
  • Modern components from ShadCN UI
  • Intuitive navigation between tables and operations

License

MIT