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-my-lerna-demo

v1.0.2

Published

+ 初始化 npm,npm init -y + 安装lerna,npm i lerna -D(最好全局安装) + lerna init,生成lerna.json配置文件

Downloads

1

Readme

lerna 开发脚手架流程

脚手架项目初始化

  • 初始化 npm,npm init -y
  • 安装lerna,npm i lerna -D(最好全局安装)
  • lerna init,生成lerna.json配置文件

创建package

  • lerna create [packageName], https://github.com/lerna/lerna/tree/main/commands/create#readme
  • lerna add 安装依赖
  • lerna link 链接依赖

lerna基本操作

lerna add [@version] [--dev] [--exact] [--peer]

  • 对所有package安装依赖 lerna add brooker_f-test-cli

  • 对指定的package安装依赖 lerna add brooker_f-test-cli packages/util

lerna bootstrap

安装所有package的依赖,同时创建软连接

lerna clean

清空所有package的依赖

lerna link

lerna exec

https://github.com/lerna/lerna/blob/main/commands/exec#readme 在每个package 执行命令,如 lerna exec -- rm -rf node_modules/, window下先全局安装rimraf,npm install rimraf -g,然后 执行 lerna exec -- rimraf ./node_modules/ 去删除

  • 也可以单独执行某个包 lerna exec --scope @brooker_f-my-lerna-demo/core rimraf ./node_modules/

lerna run

执行每个的package的 script 命令,如 lerna run test lerna run --scope [packageName]

lerna version

lerna diff

查看代码 与之前的提交的代码的差别

lerna changed

查看上版本以来的所有变更

lerna publish 发布

同时发布package下的所有包。 如果有些package的package.json包名有作用域,即name里包含@,则为私有仓库,则需要在package.json添加代码

  "publishConfig": {
    "access": "public"
  }