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

@geoway/onemap-tools

v1.5.1

Published

前端工具函数库 @武汉吉威空间信息技术研究院有限公司

Downloads

4

Readme

@geoway/onemap-tools

前端工具函数库

代码提交

项目推荐采用 git 作为代码管理工具,当通过 git 提交代码时,会采用commitlint进行提交信息校验,信息格式遵循Angular commit convention,以保证每次提交信息清楚明确,有利于回退及问题排查。

代码提交格式:
<类型>(<域>): <主题>

<主体>

<补充>

类型包括:
build: 系统构建后提交
ci: 持续集成脚本或者配置变更
chore: 杂项及周期性任务
docs: 文档变更
feat: 新功能
fix: bug修复
perf: 代码性能优化
refactor: 代码重构(修复bug或者增加新功能)
style: 界面样式变更
test: 添加或者修改测试脚本

主题:
简明阐述本次提交修改的内容

主体(可选):
详细阐述为什么修改,如何修改

补充(可选):
BREAKING CHANGE: 不兼容性更新说明

实例:
bug修复: git commit -a -m "fix(user): 修复user模块用户无法登陆的bug。"
功能开发: git commit -a -m "feat(dashboard): 新增首页导航栏,现在可以正确进行功能页面导航。"
破坏性变更(不兼容性更改): git commit -a -m "feat(mapdoc): 新增地图文档功能。
BREAKING CHANGE: 新保存的地图文档格式将不兼容老版本格式。迁移文档见: xxxx"
文档更新: git commit -a -m "docs: 修复文档中存在的错别字及语法错误。"

详情见: https://github.com/angular/angular/blob/master/CONTRIBUTING.md#-commit-message-guidelines

版本发布

// 发布新版本
npm run release

首次使用请运行 `npm run release --first-release`

自动增加 package.json 中的版本号,并作为git tag提交,其利用每次commit标准化提交信息,自动生成版本更新日志,并发布到私有仓库。