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

td-component

v1.0.7

Published

## 介绍 本库是基于 iView 来开发业务组件、生态组件的模板,本库适用于开发一个组件,而非多个组件。

Downloads

15

Readme

Vue Component Template

介绍

本库是基于 iView 来开发业务组件、生态组件的模板,本库适用于开发一个组件,而非多个组件。

准备工作

修改 src/config.js 配置

  1. filename 是编译后的文件名,比如 iview-demo.css、iview-demo.min.js
  2. componentName 是默认的组件标签名,比如
  3. library 是包名

修改 package.json 配置

  1. 修改库名 name
  2. 修改入口 main 的最终引用文件名,与 src/config.js 中一致
  3. 修改版本号(可选,npm 发布用)
  4. 修改 git 地址(可选)

开发

  1. 组件在 src/component/index.vue 中编写(打包入口)
  2. 其它依赖的 .vue 文件也可以在 src/component 目录中创建,或自定义其它路径
  3. 样式在 src/style/index.less 中使用 less 开发,默认已经导入了 iView 的 less 变量表(如不用可移除)

实时预览

  1. 运行 npm run dev 可开启实时预览
  2. 预览文件在 examples/routers/index.vue 中开发
  3. 预览环境默认使用了 Vue.js 2.6.6 版本 和 iView 3.2.2 版本,可在 index.html 中修改

编译

  1. 运行 npm run build 可打包,这个命令包含两个命令:npm run build:stylenpm run build:prod,分别是 CSS 和组件
  2. 编译后的文件在 dist 目录

发布

  1. [x] 可直接复制 dist 目录到业务中使用
  2. [ ] 等待私有 npm 搭建