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

mm-cli-dev

v1.0.0

Published

Downloads

3

Readme

基于lerna 多包管理脚手架搭建

创建步骤

  1. 脚手架初始化
  2. 创建package
  3. 脚手架开发和测试
  4. 脚手架发布

1 脚手架初始化过程

  • npm init -y 快速初始化npm项目
  • lerna init 初始化lerna,将会自动生成packages目录。
  • 增加.gitignore 进行git相关配置

2 创建package

  • lerna create @mm-cli-dev/core 使用@符号后,必须使用npm组织。
  • 通过git status 查看git将会被上传的文件
  • learn add package 全局安装
  • learn add package path 指定安装, lerna add package packages/core(注意这里是文件夹名称) 给core添加dependence
  • learn link 执行当前命令后, 任意package 下可以在依赖环境中直接使用而不需要lerna link package 或者npm link package

3 开发与调试

  • learn exec 执行shell 命令 lerna exec --scope package(这里是package名称) -- rm -rf node_modules/xxx 删除的是packages中子package而非全局node_modules中内容
  • learn clean
  • learn run npm run
    1. lerna run xxx 执行packages下 script中所有xxx命令
    2. lerna run -scope package(这里是package名称不是路径) xxx 执行指定包下命令
  • learn bootstrap 重装packages下所有install

4 脚手架发布上线

  • lerna version 自动增加版本号,前提是要求git commit。
  • lerna changed 自上个版本后到当前时间点发生变动内容
  • lerna publish 每次publish成功后会产生一个tag

tips

git status

status

  • git checkout -- xxxx 删除已经commit的xxx文件
  • 默认@xxx orginazation 项目默认private 必须增加如下配置
  "publishConfig": {
    "access": "public"
  }