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

@padcom/create-vue-app

v0.0.5

Published

NPM project generator for Vue+TS+TailwindCSS+eslint+router+pinia+vueuse application

Downloads

10

Readme

Vue.js 3.x application generator

This generator creates a project that has vue, tailwindcss+nesting, pinia, router, typescript, eslint and vitest configured.

Usage

To use this generator you need to have nvm and node.js installed through nvm.

Then issue the following command:

$ npm create @padcom/vue-app

Which will create the following elements:

start.ts

This is the main application entry point. It can be invoked either directly or by calling npm start

example.test.ts

This is an example vitest test written in TypeScript

package.json

Project configuration file.

.gitignore

Default list of ignored files

.nvmrc

Contains version of node used when initializing the project

tsconfig.json

Default TypeScript configuration and documentation

Default scripts

The following list describes the default NPM scripts that can be used with the project

start (alias for dev)

dev

Starts the application by running

$ npm run dev

build

Build the project. All assets are then stored in dist folder which is ignored by git by configuration.

preview

Builds the projects and waits for changes, then rebuild.

test:watch

Executes all tests in the project

test:watch

Executes tests that have been changed since the last commit.

lint

You can run linter on your project with the following command:

$ npm run lint

lint:fix

You can fix all auto-fixable linter problems by issuing the following command:

$ npm run lint:fix

TypeScript

All files in the project can use TypeScript (both logic and tests)

Tests

Tests are executed using Jest runner