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

@horace_cai/firstui

v0.1.3

Published

First vue UI framework

Downloads

2

Readme

尝试发布 UI 框架到 npm 上

  • 开发一套 UI 框架
    element-ui
    公司需要 UI 框架,但可能现有的 UI 框架不满足需求
    自己按需定制一份发布 npm

  • 跟平常开发的区别
    packages 才是开发目录,防止自己的组件
    原来的 src 改为 examples

  • 编写 vue.config.js
    vue-cli 默认会启动 src 下的服务, 如果目录名变了, 需要手动修改配置

  • 在packages 目录下写自己的组件
    Button/index.js -> 在组件入口文件,给组件添加 install 方法,让它可以被全局使用 Vue.use()
    packages/index.js -> 在 packages 的入口文件中导入组件并安装导出

  • 配置 package.json
    "lib": "vue-cli-service build --target lib --name (name) --dest lib packages/index.js"
    输出到指定目录下
    description 组件库的描述文本
    keywords 组件库的关键词
    license 许可协议
    repository 组件库关联的 git 仓库地址
    homepage 组件库展示的首页地址
    main 组件库的主入口地址(在使用组件时引入的地址)
    private 声明组件库的私有性, 如果要发布到npm公网上,需删除该属性或者设置为 false
    publishConfig 用来设置 npm 发布的地址, 这个配置作为团队内部的npm服务器来说非常关键, 可以设置为私有的 npm 仓库

  • 发布到 npm
    yarn lib: 本地编译组件库代码
    npm login: 登录 npm(要注意从淘宝源 https://registry.npm.taobao.org/ 换回 npm 自己的源 http://registry.npmjs.org)
    npm publish: 发布
    npm publish --access public: 如果发布失败提示权限问题执行