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

@padmadev/padma

v0.1.1

Published

Padma- Nextjs Framework for Strapi

Readme

Getting Started with Padma

1. Create a New Padma Project

Run the following command to create a new Padma project:

npx padma create my-project

2. Select a Package Manager

During project setup, you'll be prompted to choose your preferred package manager. If you're not sure, you can go with the default one.

? Which package manager would you like to use? (npm, yarn, pnpm)

3. Initialize Git (Optional)

You will also be asked if you want to initialize a Git repository for your project. If you choose yes, it will automatically create a Git repository for you.

? Would you like to initialize a Git repository? (y/n)

4. Project Structure

Once the project is created, the directory will be structured as follows:

Sure! Here's the updated section that includes information on creating a custom theme within the packages folder:


Project Structure

Once the project is created, the directory will be structured as follows:

my-project/
|__ node_modules/
|__ packages/
|   |__ blank-theme
|__ package.json
|__ padma.settings.ts
|__ favicon.ico

The blank-theme will be inside the packages/ folder as the default theme. You can also create your own custom themes within the packages/ folder, just like the blank-theme. To do so, create a new folder under packages/ and add your theme files. Then, update the padma.settings.ts file to point to your custom theme.

For example, you could create a new theme called custom-theme:

my-project/
|__ packages/
|   |__ blank-theme
|   |__ custom-theme

Afterward, update the padma.settings.ts to use custom-theme:

// In padma.settings.ts
{
  "activeTheme": "@padmadev/custom-theme'",
}

5. Run the Project Locally

To run the project locally, use the following command:

cd my-project && npx padma dev

This starts the development server at http://localhost:3000, and it will automatically reload whenever you make changes in the packages/ directory.

6. Make Changes to Your Site

Now, open the project in your code editor and make edits to the packages/blank-theme folder. The browser will auto-refresh to reflect the changes.

Set Up Your Own Strapi Installation

You can connect your own Strapi instance to Padma by editing the config/theme.settings.ts file.

// Example connection setup for Strapi

Note: Changes to Strapi data won't automatically update on the site unless they are made within the packages/ directory. You’ll need to manually refresh the browser to see new data.

What's Next?

Follow the Step-by-Step Tutorial

Start with Padma's Step-by-Step Tutorial to learn how to use Padma effectively.

Check Padma's Guides

Explore various guides to help you work with Padma, including troubleshooting and common challenges.

Check the API Reference

Once you're comfortable with the basics, refer to the API Reference for detailed information about Padma CLI, packages, plugins, and themes.

Deploy Your Site

When you're ready to deploy your site, follow the instructions in the Deployment section. We recommend using Vercel for an easy deployment process.