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

notpadd-core

v3.0.4

Published

Core of notpadd build on content-collections core

Downloads

705

Readme

Notpadd

Buildtime CMS for your Next.js application.

Prerequisites

Before setting up the project locally, make sure you have the following installed:

  • Node.js version 18 or higher
  • pnpm version 9.0.0 or higher

Local Setup

Follow these steps to set up the project on your local machine:

  1. Clone the repository:
git clone https://github.com/code-env/not-padd.git
cd not-padd
  1. Install dependencies:
pnpm install
  1. Set up environment variables:

Create environment files in the root directory and in the apps directories as needed. Refer to the documentation or ask your team for the required environment variables.

  1. Set up the database:

Run database migrations to set up the schema:

pnpm db:migrate

Alternatively, you can push the schema directly:

pnpm db:push
  1. Start the development servers:

To start all apps and packages:

pnpm dev

To start a specific app, use filters:

pnpm dev --filter=web
pnpm dev --filter=api

The web application will be available at http://localhost:3001 and the API will run on its configured port.

Project Structure

This is a Turborepo monorepo containing the following:

Apps:

  • apps/api - Hono API server
  • apps/web - Next.js web application

Packages:

  • packages/auth - Authentication package
  • packages/core - Core functionality package
  • packages/db - Database package with migrations
  • packages/env - Environment variable configuration
  • packages/integrations - Integration packages
  • packages/notpadd - Main notpadd package
  • packages/ui - Shared React component library
  • packages/eslint-config - ESLint configurations
  • packages/typescript-config - TypeScript configurations

Examples:

  • examples/with-notpadd - Example Next.js application using notpadd
  • examples/with-notpadd-published - Example with published content

Other:

  • docs - Project documentation
  • docker-compose.yml - Docker configuration

Development

All packages and apps are written in TypeScript. The project uses:

  • TypeScript for static type checking
  • ESLint for code linting
  • Prettier for code formatting

Run linting:

pnpm lint

Run type checking:

pnpm check-types

Format code:

pnpm format

Build

To build all apps and packages:

pnpm build

To build a specific package:

pnpm build --filter=web
pnpm build --filter=api

Database Commands

Generate database migrations:

pnpm db:generate

Run migrations:

pnpm db:migrate

Push schema changes:

pnpm db:push

Open database studio:

pnpm db:studio