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

brooker_f-test-cli

v1.0.1

Published

脚手架初始化 npm init -y 创建bin文件夹下的入口文件 index.js,并在第一行 #!/usr/bin/env node 配置package.json文件,配置脚手架指令,指向bin文件夹下的index.js入口文件 ```json "bin": { "cli-command": "bin/index.js" } ``` 然后发布脚手架到npm + npm login 进行登录 + npm publish 进行发布

Downloads

1

Readme

创建以及发布npm

脚手架初始化 npm init -y 创建bin文件夹下的入口文件 index.js,并在第一行 #!/usr/bin/env node 配置package.json文件,配置脚手架指令,指向bin文件夹下的index.js入口文件

"bin": {
  "cli-command": "bin/index.js"
}

然后发布脚手架到npm

  • npm login 进行登录
  • npm publish 进行发布

使用

npm i [packagname] -g

遇到的问题

1、登录npm邮箱没有验证会包以下错误

403 Forbidden - PUT https://registry.npmjs.org/lanke-template-h5 - Forbidden
npm ERR! 403 In most cases, you or one of your dependencies are requesting you or one of your dependencies are requesting a package version that is forbidden by your security policy

解决:在npm页面顶面 点击发送邮箱去验证邮箱 2、npm源没有切换回来,不能使用淘宝源

403 403 Forbidden - PUT https://registry.npm.taobao.org/

解决:npm config set registry=https://registry.npmjs.org

3、和公开的库重名

Error: 403 Forbidden - PUT https://registry.npmjs.org/xx - You do not have permission to publish "xx". Are you logged in as the correct user?

解决:修改package.json的name 加上自己账户的前缀 如[maname]-[packaggename] 如果前缀是@[myname], 则发布的时候要使用 npm publish --access public, 因为这种形式的包名 默认发布的是私有的包,需要收费的

撤销发布的包

npm unpublish --force