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

vue-dt-ui

v0.0.1

Published

## Project setup ``` yarn install ``` ## 一、组件库开发部署 ### 目录 ``` |-- components -- index.js // 导出组件库的文件 |-- CommonFooter // 单个组件文件夹 -- CommonFooter.vue // 组件文件 -- index.js // 组件导出文件 |-- src // 用于本地测试组件demo -- main.js /

Downloads

4

Readme

npm-vue-template

npm发布vue组件库模板,支持按需引入

Project setup

yarn install

一、组件库开发部署

目录

|-- components
  -- index.js      // 导出组件库的文件
  |-- CommonFooter  // 单个组件文件夹
    -- CommonFooter.vue  // 组件文件
    -- index.js          // 组件导出文件
|-- src        // 用于本地测试组件demo
  -- main.js    // 全局导入组件用于测试
  -- app.vue    // 测试页入口
  |-- assets     // 图片等资源
|-- public      // 模板文件,与普通vue项目一致,可以忽略不关注
|-- lib         // 组件库打包后的文件夹

开发组件库流程说明

  1. 修改package.json的name,例如vue-ui-demo。该值为将来发布的组件库名字
  2. 组件库放在components文件夹下,需配置index.js。可参考CommonFooter组件
  3. 组件测试页面 yarn serve
  4. 打包及部署到npm见下面具体说明

组件测试页面

yarn serve

打包组件库

输出到lib文件夹

yarn build

发布npm的流程

  1. 前提,得有个npm账号,没有就新注册一个账号https://www.npmjs.com/signup
  2. 进入到项目的根目录下,运行 npm login 执行登录 一般情况下回提示你输入 你的用户名,密码和邮箱,若登录成功一般会显示: Logged in as 你的名字 on https://registry.npmjs.org/.
  3. 发布或者更新包的时候,需要手动修改 package.json 中的version版本号,一般惯例都是+1,比如1.0.0 --> 1.0.1。更改完成后,分别执行打包、登录npm、发布即可
yarn build 将组件打包
npm login
npm publish(在此之前可能需要npm login登录)
  1. 关于版本号和标签 npm包的版本号遵循着一定的规范,比如1.5.2这个版本号,其中1是主版本号(major version),5是次版本号(minor version),而 2是补丁版本号(patch version),主要用来bug修复的更新等。在包管理的时候遵循对应语义的版本号更新,便于后续维护。 同时,在发布一个新版本的时候,还可以使用打标签的方式进行标记,如:

如果你的包是已经发布过了,还可以对指定的版本号进行打标签: npm dist-tag add [email protected] [stable]

提示:

发包时提示name名错误,name名称不能有大写字母,一般建议小写字母加中横线连接

二、组件库使用

以组件库:vue-ui-demo,其中包含组件 CommonFooter为例

一、全局引入

// 在main.js中全局注册

import vueUiDemo from 'vue-ui-demo'
import 'vue-ui-demo/lib/index/style.css'
Vue.use(vueUiDemo)

模板中使用方式:

<template>
  <div id="app">
    <common-footer></common-footer>
  </div>
</template>

二、按需部分引入

可以指定组件库中的某个组件单独引入。避免仅使用部分组件,要引入全部组件库的情况。 以引入组件库:vue-ui-demo中的组件 CommonFooter为例

配置:使用插件 babel-plugin-component
npm i babel-plugin-component -D

插件使用文档:https://www.npmjs.com/package/babel-plugin-component

在babel.config.js中增加

  "plugins": [
    [
      "component",
      {
        "libraryName": "vue-ui-demo", // 组件的名称
        "camel2Dash": false,  // 组件路径保持驼峰,不自动转换为-连接
        "style": true   // 如果组件有样式文件,引入组件的单独的css
      }
    ],
  ]

模板中使用方式:

<template>
  <div id="app">
    <common-footer></common-footer>
  </div>
</template>

1. 直接全局注册:

// 在main.js中全局注册
import {CommonFooter} from 'vue-ui-demo'
Vue.use(CommonFooter)

2. 组件内部注册:

// 使用组件的.vue文件中局部注册
<script>
import {CommonFooter} from 'vue-ui-demo'
export default {
  components:{
    'common-footer':CommonFooter
  }
}
</script>

参考文章:

【npm】将自己的vue组件发布为npm包

Vue Cli 3 搭建一个可按需引入组件的组件库架子

Customize configuration

See Configuration Reference.