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

create-storentia

v1.1.0

Published

Create a new Storentia e-commerce store with one command

Readme

Storentia - E-commerce Store Template

A modern, feature-rich e-commerce store template built with Next.js 16, React 19, and Tailwind CSS.

🚀 Quick Start

Create a new Storentia store with one command:

npm create storentia@latest

You'll be prompted to enter:

  1. Store name - Your store's name (e.g., "My Awesome Store")
  2. Authentication key - Your Storentia authentication key (will be validated automatically)

The CLI will automatically:

  • Validate your API key against the Storentia backend
  • ✅ Retrieve your store information from the API
  • ✅ Clone the template
  • ✅ Set up your project with the specified name
  • ✅ Create .env.local with validated store data
  • ✅ Create .env.dashboard with validated store data
  • ✅ Install all dependencies
  • ✅ Configure authentication automatically

New in v1.1.0: API keys are now validated before store creation! See API_VALIDATION_FEATURE.md for details.

Or provide the store name directly:

npm create storentia@latest my-store-name

Alternative with npx:

npx create-storentia@latest

Then navigate to your project and start the development server:

cd my-store-name
npm run dev

Open http://localhost:3000 to see your store.

✨ Features

  • API Key Validation: Automatic validation of Storentia API keys before store creation
  • Modern Stack: Built with Next.js 16 and React 19
  • Beautiful UI: Pre-built components using Radix UI and Tailwind CSS
  • Dashboard: Complete admin dashboard for store management
  • Responsive: Mobile-first design that works on all devices
  • TypeScript: Full TypeScript support for type safety
  • Dark Mode: Built-in theme switching with next-themes
  • Charts: Data visualization with Recharts
  • Carousel: Product showcases with Embla Carousel

📦 What's Included

  • Authentication pages (Login/Register)
  • Product catalog and detail pages
  • Shopping cart functionality
  • Admin dashboard
  • User profile management
  • Order management
  • Responsive navigation
  • And much more!

🔐 Environment Configuration

The CLI automatically creates three environment files with validated store data from the Storentia API:

.env.local (Main Store)

# Authentication Key
STORENTIA_AUTH=your_authentication_key

# Store Information (from validated API response)
NEXT_PUBLIC_STORE_ID=your_store_id
NEXT_PUBLIC_STORE_NAME=Your Store Name
NEXT_PUBLIC_STORE_DESCRIPTION=Your store description

# Store Owner Information
STORE_OWNER_ID=owner_id
STORE_OWNER_NAME=Owner Name
[email protected]

# API Key Information
API_KEY_TYPE=PROD
API_KEY_PERMISSIONS=READ,WRITE,MANAGE_PRODUCTS

# API Configuration
NEXT_PUBLIC_API_URL=https://storekit.samarthh.me/v1

.env.dashboard (Admin Dashboard)

Same as .env.local with additional dashboard-specific variables:

NEXT_PUBLIC_DASHBOARD_MODE=true
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=auto_generated_secret

.env.example (Reference Template)

A template file for your reference with all available environment variables.

⚠️ Important: Never commit .env.local or .env.dashboard to version control. These files are automatically added to .gitignore.

📖 Learn More: See API_VALIDATION_FEATURE.md for detailed information about API key validation.

🛠️ Available Scripts

In your project directory, you can run:

npm run dev

Starts the development server on http://localhost:3000

npm run build

Builds the application for production

npm start

Runs the built application in production mode

npm run lint

Runs ESLint to check code quality

🎨 Customization

The template is fully customizable. You can:

  • Modify components in the src/components directory
  • Update pages in the src/app directory
  • Customize styles in your Tailwind configuration
  • Add your own features and functionality

📚 Tech Stack

🤝 Contributing

Contributions are welcome! Feel free to open issues or submit pull requests.

📄 License

MIT License - feel free to use this template for your projects!

🔗 Links


Made with ❤️ by TechSolace