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

create-primestrider-vue

v1.0.5

Published

Vue Boilerplate

Readme

Vue 3 Project Structure Guide

Installation

Create a new project using the CLI:

npm create primestrider-vue

This project follows a feature-based architecture with clearly separated modules for features, shared utilities, and global plugins with a scalable Vue 3 starter kit using Vite, TypeScript, Pinia, Vue Router, TailwindCSS, Vue Query, and best‑practice folder structure. It provides:

  • Organized feature‑based architecture
  • Built‑in i18n support
  • Shared reusable components and models
  • Auto‑generated feature scaffolding (create-feature script)
  • Modern tooling: ESLint, Prettier, TypeScript

Perfect for medium‑to‑large Vue applications that require clean structure, maintainability, and scalability.


🗂 Folder Structure Overview

src/
├── assets/                       # Static styles and assets (CSS, images)
├── main.ts                       # App bootstrap
├── App.vue                       # Root app component

├── features/                     # Feature-specific domains
│   ├── feature-a/
│   │   ├── components/           # UI components specific to feature-a
│   │   ├── languages/            # i18n messages specific to feature-a
│   │   ├── models/               # Types or interfaces
│   │   ├── routes/               # Route configs for feature-a
│   │   ├── services/             # API or business logic
│   │   ├── stores/               # Pinia stores
│   │   └── views/                # Vue page components
│   └── feature-b/                # (Repeat structure for other features)

├── shared/                       # Shared code reused across features
│   ├── components/               # Global reusable components
│   ├── languages/                # Shared i18n messages (e.g. errors, common labels)
│   ├── models/                   # Shared types/interfaces
│   ├── routes/                   # Global or fallback routes
│   └── views/                    # Shared views (e.g. 404 Page)

Packages Dependencies

  • vue – The core Vue 3 framework.
  • vue-router – Routing system for handling pages.
  • pinia – State management library.
  • vue-i18n – Internationalization support.
  • axios – HTTP client for API calls.
  • @tanstack/vue-query – Data fetching & caching utilities.
  • @vueuse/core – Utility composables for Vue.
  • @vueuse/integrations – Integrations for libraries (e.g., validation, cookies).
  • vee-validate – Form validation framework.
  • universal-cookie – Cookie handling.
  • tailwindcss – Utility-first CSS framework.
  • @tailwindcss/vite – Tailwind integration for Vite.
  • date-fns – Date utilities.
  • zod – Schema validation & parsing.