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

m-nover

v1.0.3

Published

一个简单的用于验证 `node` 版本 和 包管理器(`npm、yarn`)是否符合期望的命令工具

Downloads

1

Readme

前置:你可能并不需要这个包

如果你仅仅想要控制执行 npm scripts 的 node 版本, 可以在 package.json config 中添加 engine-strict: true 实现。

m-nover

一个简单的用于验证 node 版本 和 包管理器(npm、yarn)是否符合期望的命令工具

Features

  • 执行 npm scripts 前验证 node 版本 和 包管理器(npm、yarn)是否符合期望
  • 期望的 node 版本定义遵循 semantic version 规范

使用场景

  • 如果你同时需要维护多个项目,项目运行要求的 node 版本 和 包管理器存在差异时,推荐使用。

安装

npm

npm install -D m-nover

yarn

yarn add -D m-nover

pnpm (pnpm 本身支持该能力,无需使用)

pnpm install -D m-nover

设置目标 node 版本

m-nover 获取目标 node 版本的来源有两个:package.json 中的 engines 和 脚本参数(arguments)。

其中 脚本参数 的优先级要高于 engines
例如:

  "scripts": {
    "prestart": "m-nover -t ^18"
  }
  
 or

  "engines": { "node": "^16" }

目标 node 版本 会使用 18 作为实际的 node 版本。如果没有脚本参数,会默认使用 engines 的设置作为目标版本

使用方式

m-nover 目前只提供了 bin 文件,因此可以在 package.json 中的 npm scripts 脚本中使用。

  1. 通过 && 组合要执行的命令

      "scripts": {
        "start": "m-nover && other command",
        "build": "m-nover && other command"
      }

    当执行 npm run start 或者 npm run build 时,m-nover 会首先校验当前执行命令使用的 node 版本和项目实际需要的版本是否一致。
    如果不一致,会提示错误信息并阻止后续命令执行。
    如果一致,则会继续执行后续的命令。

  2. 使用 Pre & Post Scripts

        "scripts": {
          "prestart": "m-nover",
          "start": "other command",
          "prebuild": "m-nover",
          "build": "other command"
        }

    执行效果和上面的方式是一致的,比较好的一点是不用改动原有的命令。关于 Pre & Post Scripts 的使用方式,可以参考:npm scripts

参数说明

  • -t(不推荐):  设置 node 目标版本, 后跟项目运行实际需要的 node 版本。使用方式为 -t node-version, 比如: -t 18, -t ^18, -t ~18
  • target(推荐):  同 -t, 使用方式为 target=node-version, 比如: target=18, target=^18, target=~18
  • en-pm:  设置是否启用包管理器验证,默认是开启的,如果想关闭,可以设置en-pm=false
  • enable-pm-verify:  同 en-pm