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

58-house-rn-unit

v1.0.3

Published

我们将种子工程与 WBAPP 解耦了。现在可以本地相关 @w/wbapp 版本,可以不用依赖热更新平台的版本了。这保证了线下调试使用的 wbapp 与热更新打包使用的 wbapp 是完全一致的,减少了出错情况下的调试成本。

Downloads

14

Readme

我们将种子工程与 WBAPP 解耦了。现在可以本地相关 @w/wbapp 版本,可以不用依赖热更新平台的版本了。这保证了线下调试使用的 wbapp 与热更新打包使用的 wbapp 是完全一致的,减少了出错情况下的调试成本。

大家可以选择性的将项目升级为 @w/wbapp 的形式。

老项目不升级

不需要做任何改动。但是热更新平台上的 WBAPP 也不会再进行更新,这意味着 APP 8.1.0 以后新增加的接口是不能使用的。

老项目要升级

1). 通过以下命令下载 @w/wbapp

// 登录/注册。需输入 username  password  email 即可登录/注册
$ npm login —scope=@w —registry=http://cnpm.58v5.cn

// 下载
$ npm install

2). 将项目中的改变 wbapp 的方式

// 原有引用方式一 
import WBAPP from '../WBAPP';
// 原有引用方式二
import WBAPP from 'wbapp';

// 新的引用方式
import WBAPP from '@w/wbapp';

新项目

clone 种子工程后,通过以下命令安装依赖包

npm install  --registry=http://cnpm.58v5.cn/

更详细的开发文档请查看 本地开发文档

更详细的私有 npm 使用方法请查看 npm.58v5.cn