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

@bestime/nine-ui-vue3

v1.0.0

Published

- [git提交](#git提交) - 本项目采用 eslint + prettier 统一代码风格,具体配置请参考官方文档 - [eslint 配置文档](https://eslint.bootcss.com/docs/rules/) - [prettier 配置文档](https://www.prettier.cn/docs/options.html) - [构建命令](#构建命令) - [自定义环境变量](#自定义环境变量) - 尽量避免使用以下技术 (导致代码追踪困难):vuex、pini

Downloads

67

Readme

通用vue3项目模板

git提交

提交代码前,会自动检验提交内容

  • 代码风格

  • 提交注释信息规范。commit-message文档

    // 类型: 消息
    git commit -m 'docs: 更新READEME.md文档'

    支持的提交类型

    • feat: 新增功能
    • fix: 修复bug
    • style: 代码格式修改
    • test: 测试
    • refactor: 重构代码
    • build: 项目构建
    • docs: 文档更新
    • revert: 回滚某个更早之前的提交
    • chore: 其它修改

构建命令(可根据情况自行添加)

  • npm run dev - 开发模式
  • npm run build:hash - 发布模式(hash)
  • npm run build:history - 发布模式(history)
  • npm run lint-check - 代码质量检测
  • npm run lint-fix - 代码质量修复。如果未完全修复,请手动修改代码

自定义环境变量

  • VITE_ROUTER_MODE - 路由模式。支持 hash 和 history
  • VITE_ROUTER_BASE - 项目baseUrl,会直接影响系统变量 BASE_URL
  • 服务器01配置
    • VITE_SERVER_01.origin - 服务器地址
    • VITE_SERVER_01.apiPrefix - api前缀
    • VITE_SERVER_01.devProxy - 是否开启本地代理(true|false)