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

npm-template-vue2

v1.0.0

Published

这是一个可用于发布npm包的Vue2组件开发工作空间模板。This is a Vue2 component development workspace template that can be used to publish npm packages.

Downloads

4

Readme

npm-template-vue2

npm-template-vue2 vuejs nodejs blog

这不是一个可用的 npm 包,这是一个与 npm 包开发相关的 git 仓库,只是在 npmjs 上进行展示。

这是一个可用于发布 npm 包的 Vue2 组件开发工作空间模板。

This is not an available npm package, this is a git repository related to npm package development and is just demonstrated on npmjs.

This is a Vue2 component development workspace template that can be used to publish npm packages.

Introduction

If you need to quickly build a vue2 component development workspace that can be published to npm, you can use the workspace template provided by npm-template-vue2.

Usage

$ cd [your empty project folder path]
$ git clone [email protected]:SuperYesifang/npm-template-vue2.git .
$ rm -rf .git

And then

You just need to replace all the npm-template-vue2 in the project with your component name to start your component development.

or

If your linux or macos, you can also use the sedorperl command to complete the replacement.

default Dependences

{
	"dependencies": {
		"@babel/runtime": "^7.15.4",
		"vue": "^2.5.11"
	},
	"devDependencies": {
		"babel-plugin-transform-runtime": "^6.23.0",
		"babel-core": "^6.26.0",
		"babel-loader": "^7.1.2",
		"babel-preset-env": "^1.6.0",
		"babel-preset-stage-3": "^6.24.1",
		"cross-env": "^5.0.5",
		"css-loader": "^0.28.7",
		"file-loader": "^1.1.4",
		"vue-loader": "^13.0.5",
		"vue-template-compiler": "^2.4.4",
		"webpack": "^3.6.0",
		"webpack-dev-server": "^2.9.1"
	}
}