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

lin-first

v1.3.0

Published

first package

Downloads

7

Readme

npm包发布测试

一、初始化项目

  1. 创建项目文件夹: 在你的计算机上创建一个新的文件夹,用于存放你的 npm 包项目。

  2. 初始化 npm 项目: 打开命令行界面,进入到项目文件夹中,并运行以下命令初始化 npm 项目:

npm init -y

这个命令会引导你填写项目的基本信息,比如包名称、版本、描述等,并生成一个 package.json 文件。

  1. 编写代码: 在项目文件夹中编写你的 npm 包的代码,包括 JavaScript 文件、配置文件等。

  2. 编写 README 文件: 创建一个 README.md 文件,用于描述你的 npm 包的用途、安装方法、使用示例等。

  3. 编写测试代码(可选): 如果需要对你的 npm 包进行测试,可以编写测试代码,并使用适当的测试框架进行测试。

二、编写 package.json 文件

package.json 文件是 npm 包的配置文件,用于描述 npm 包的基本信息、依赖关系和脚本等。

  1. 包名称: 在 package.json 文件中,将 "name" 字段的值设置为你的 npm 包的名称。
  2. 包版本: 在 package.json 文件中,将 "version" 字段的值设置为你的 npm 包的版本号。
  3. 包描述: 在 package.json 文件中,将 "description" 字段的值设置为你的 npm 包的描述。
  4. 包入口文件: 在 package.json 文件中,将 "main" 字段的值设置为你的 npm 包的入口文件。
  5. 包依赖: 在 package.json 文件中,将 "dependencies" 字段的值设置为你的 npm 包的依赖关系。
  6. 包作者: 在 package.json 文件中,将 "author" 字段的值设置为你的 npm 包的作者信息。
  7. 包许可证: 在 package.json 文件中,将 "license" 字段的值设置为你的 npm 包的许可证。
  8. 包脚本: 在 package.json 文件中,将 "scripts" 字段的值设置为你的 npm 包的脚本命令。
  9. 包仓库: 在 package.json 文件中,将 "repository" 字段的值设置为你的 npm 包的仓库地址。
  10. 包关键字: 在 package.json 文件中,将 "keywords" 字段的值设置为你的 npm 包的关键字。
  11. 包主页: 在 package.json 文件中,将 "homepage" 字段的值设置为你的 npm 包的官网地址。
  12. 包 bug 报告: 在 package.json 文件中,将 "bugs" 字段的值设置为你的 npm 包的 bug 报告地址。
  13. 包贡献者: 在 package.json 文件中,将 "contributors" 字段的值设置为你的 npm 包的贡献者信息。
  14. 包维护者: 在 package.json 文件中,将 "maintainers" 字段的值设置为你的 npm 包的维护者信息。
  15. 包贡献者: 在 package.json 文件中,将 "contributors" 字段的值设置为你的 npm 包的贡献者信息。

三、账号注册

  1. 创建 npm 账号: 如果你还没有 npm 账号,首先需要在 npm 官网 上注册一个账号。
  2. 登录 npm 账号: 在命令行中,运行以下命令登录 npm 账号:
npm login
  1. 验证登录状态: 登录成功后,你可以使用以下命令来验证当前登录状态:
npm whoami

如果输出了你的 npm 用户名,则表示登录成功。

四、发布 npm 包

  1. 登录 npm。
  2. 确认包名唯一性: 在发布包之前,确保你的包名在 npm 上是唯一的,否则可能会与现有的包冲突。
  3. 验证包内容和版本号: 在发布之前,确保你的包内容完整、符合规范,并且已经更新了正确的版本号。
  4. 发布 npm 包: 在命令行中,运行以下命令将你的 npm 包发布到 npm 上:
npm publish

五、更新 npm 包

npm verion patch # 更新补丁版本号
npm version minor # 更新次版本号
npm version major # 更新主版本号

六、demo

  1. index.js文件编写代码,并上传到npm仓库:
function sayHello() {
    console.log("Hello, lin-first!");
}

module.exports = sayHello;
  1. 其它项目使用:
npm i lin-first
import linFirst from 'lin-first'

linFirst()