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

storentia-create

v1.0.1

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:

npx storentia-create

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

The CLI will automatically:

  • ✅ Clone the template
  • ✅ Set up your project with the specified name
  • ✅ Create .env.local for your main store
  • ✅ Create .env.dashboard for your admin dashboard
  • ✅ Install all dependencies
  • ✅ Configure authentication automatically

Or provide the store name directly:

npx storentia-create my-store-name

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

  • 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:

.env.local (Main Store)

STORENTIA_AUTH=your_authentication_key
NEXT_PUBLIC_STORE_NAME=Your Store Name
NEXT_PUBLIC_API_URL=http://localhost:3000/api

.env.dashboard (Admin Dashboard)

STORENTIA_AUTH=your_authentication_key
NEXT_PUBLIC_DASHBOARD_MODE=true
NEXT_PUBLIC_STORE_NAME=Your Store Name
NEXT_PUBLIC_API_URL=http://localhost:3000/api
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.

🛠️ 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