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 🙏

© 2024 – Pkg Stats / Ryan Hefner

prios-plugin-scaffolding-tool

v1.16.12

Published

The prios-plugin-scaffolding-tool is a command-line utility designed to streamline the creation of Vue.js plugin projects. It provides an automated way to scaffold new Vue plugins with a predefined template, including essential configurations for Vite, Ta

Downloads

354

Readme

Vue Scaffolding Tool

License Vue Vite CI/CD

A CLI tool for scaffolding Vue.js plugin projects with Vite. This tool helps you quickly set up a new Vue.js plugin project with a pre-configured development environment, including Vite, Vue Router, Pinia (state management), Tailwind CSS, and more.

Features

  • Vue 3: Built for the latest version of Vue.js.
  • Vite: Fast and lightweight development environment.
  • Tailwind CSS: Pre-configured for rapid UI development.
  • Vue Router: Included for easy setup of single-page applications.
  • Pinia: Simple and intuitive state management.
  • EJS Templating: Customize templates for your scaffolding needs.
  • Component Scaffolding: Automatically generate components with PascalCase naming.
  • CI/CD Support: Integrated continuous integration and deployment pipeline for automated testing and deployment.
  • Customizable: Easily extendable with options for additional plugins and features.

Installation

Install the package:

npm install -g prios-plugin-scaffolding-tool

Usage

You can generate a new Vue plugin project using the CLI tool.

scaffold prios my-awesome-plugin

Follow the prompts to specify the project name, description, and author.

Example


? Project description: A plugin for Vue.js
? Author name: John Doe

This will scaffold a new Vue.js plugin project in the my-awesome-plugin directory with the following structure:

my-awesome-plugin/
├── src/
│   ├── components/
│   │   └── MyAwesomePlugin.vue
│   ├── assets/
│   │   └── tailwind.css
│   ├── router/
│   │   └── index.js
│   ├── store/
│   │   └── index.js
│   └── main.js
├── public/
├── index.html
├── package.json
├── vite.config.js
└── README.md

Development

To start the development server of your new scaffolded project:

cd my-awesome-plugin
npm run dev

This will start a local development server powered by Vite.

Building

To build the project for production:

npm run build

This will create a production-ready bundle in the dist directory.

Customization

Tailwind CSS The tool includes Tailwind CSS by default. You can customize it by editing the tailwind.config.js file and modifying the src/assets/tailwind.css file.

Vue Router and Pinia Vue Router and Pinia are set up for routing and state management, respectively. You can configure routes in the src/router/index.js file and manage state in the src/store/index.js file.

Contributing Contributions are welcome! Please fork the repository and submit a pull request for review.

License This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgements

  • Vue.js
  • Vite
  • Tailwind CSS
  • Pinia
  • EJS

How to Open an Issue

  1. Navigate to the Issues section of the repository.
  2. Click on the New issue button.
  3. Provide a clear and detailed description of the problem or question.
  4. Include any relevant screenshots, error messages, or code snippets to help us understand the issue better.

We will do our best to address your issue as quickly as possible.

Thank you for using our Vue Scaffolding Tool!