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

npm-publish-ts

v0.0.0

Published

use npm publish ts

Downloads

36

Readme

把ts打包成js

  • 把ts打包成js需要使用tsc命令。
  • 使用tsc命令需要typescript包和tsconfig.json配置文件。

使用ts写jest

  • 使用ts写jest需要ts-jest包和jest.config.js配置文件。

删除dist目录

  • 删除dist目录需要del包。

直接运行ts

  • 直接运行ts需要ts-node包。

限制git commit格式

  • 限制git commit格式需要husky包和@commitlint/config-conventional包和commitlint.config.js配置文件和commit-msg脚本文件。

使用git cz取代git commit

  • 使用git cz取代git commit只需npm i -g git-cz即可。

使用eslint检测ts

  • 使用eslint检测ts需要eslint包和@typescript-eslint/eslint-plugin包和.eslintrc.js配置文件。
  • 使用standard规范需要eslint-config-standard包。

对暂存区的git文件进行fix

  • 对暂存区的git文件进行fix需要husky包和lint-staged包和lint-staged.config.js配置文件和pre-commit脚本文件。

使用conventional-changelog命令生成CHANGELOG.md文件

  • 使用conventional-changelog命令生成CHANGELOG.md文件需要conventional-changelog-cli包。

初始化内容:npx conventional-changelog -p angular -i CHANGELOG.md -s -r 0

  • 不仅可在git打tag之后使用(会生成全部tag的feat和fix)。
    • 操作时需要先对package.json的version字段进行自增,然后打tag,最后运行上述命令。
  • 也可以在git打tag之前使用(会生成自上次tag后的feat和fix)。
    • 操作时需要先对package.json的version字段进行自增,然后运行上述命令,最后打tag。

追加新内容:npx conventional-changelog -p angular -i CHANGELOG.md -s

  • 只可以在git打tag之前使用(会生成自上次tag后的feat和fix)。
    • 操作时需要先对package.json的version字段进行自增,然后运行上述命令,最后打tag。

注意事项:git的tag需要是v开头的格式。

  • 例:git tag v2.0.0 -m "标签的注释"

最佳实践:保持版本号的一致性。

  • 例:如果package.json的version字段是2.0.0,那么git打tag时就要打成v2.0.0