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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@luckyjangjx/elpis

v1.0.1

Published

<!-- elpis项目是要发到npm上的 elpis-demo项目:引入elpis包 -->

Readme

package.json的name字段:

1.想要在本地调试看看这个包的效果怎么样就写成@luckyjjx/elpis 2.假如要发到npm上或者不在本地看效果的话就写成elpis

写成@luckyjjx/elpis话, 1.先在elpis项目下执行命令:npm link 2.再在elpis-demo项目下执行命令:npm link @luckyjjx/elpis 这样在elpis项目中修改了内容,elpis-demo项目中也会同步修改 3.当把报发布到nppm上之后,使用npm install @luckyjjx/elpis 将包安装到elpis-demo项目中,执行npm unlink @luckyjjx/elpis 断开连接

写服务端项目都是要安装nodemon这个包的,方便实时更新服务端代码

登录npm

npm login

查看当前登录的npm账号

npm whoami

发布包到npm

npm publish

发布公共包

npm publish --access public

master分支可以执行命令 启动服务器: npm run server:dev 启动前端项目: npm run dev

feature/sdk-npm不要合到master分支上 这个分支是发布npm包的分支 执行npm run server:dev与npm run dev项目是跑不起来的,因为代码已经修改过了