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

wj-react-hooks

v0.1.0

Published

GopherHooks -- React 业务 Hooks

Downloads

77

Readme

wj-react-hooks

GopherHooks -- React 业务 Hooks

⛰️ 能力支持

1. 可靠的代码健壮

使用 Typescript 构建,提供完善的类型定义

2. 完善的文档能力

支持文档记录,支持 demo 演示

3. 完整的测试用例

配套完整的测试用例,帮助您提升项目健壮性

🌟 设计目的

在前端项目开发中,我们通常有着各种各样可以复用的业务场景,如何能够将重复的代码量转为可复用的开发工具,是判断一个程序员编码水平及代码能力的衡量因素之一。但如何实现代码复用,也是前端开发者乃至前端架构师都老生常谈的一个问题。

除此之外,很多开发者在平时的开发中只是实现最基本的页面开发,对于构建工具的使用,测试用例的编写都少有涉及,在前端 gulpgruntwebpackesbuildSWCvitetrubo 等构件工具越出越多的背景下,如何掌握和选择这些框架,也是能够体现是否到达高级前端开发工程师水平的一个衡量依据。因此,这里我们通过以 React 为前端框架,React Hooks 作为核心产出,从 0 ~ 1 手把手搭建一个前端业务 Hooks 库,从产品设计、框架选择、架构设计到最终的编码落地,通过一个完整的产品实现,解决如何提升代码复用的问题。

⚒️ 技术选型

包管理工具 -- pnpm

作为基础包,选择社区内更推崇的pnpm作为包管理工具,原因有:

  1. pnpm安装速度更快,磁盘空间利用率高;
  2. pnpmlock文件适用于多个单一子功能的模块,且能保证每个模块的依赖不耦合;
  3. 打包产物清晰,打包后产物确保全部为静态站点资源;

构建工具 -- webpack & gulp

  1. 最终产物为多个基础子功能模块的耦合,选择gulp这种流程式的构建工具,能够更清晰的表达构建流程;
  2. 选择常用的webpack作为构建产物的声明式接入方式;
  3. 结合unpkg进行在线 dist 文件访问:https://www.unpkg.com/wj-react-hooks

静态文件打包工具 -- dumi

就目前前端社区而言,dumi是当之无愧的为组件研发而生的静态站点解决方案;

测试工具 -- jest

jest功能全面,资料丰富,能够很好地支撑原子化集合的工具函数;

其他

生成CHANGELOG

参考conventional-changelog-cli,全局安装conventional-changelog-cli

npm install -g conventional-changelog-cli
pnpm run changelog

📧 联系