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

circular-dependency-scanner

v2.2.2

Published

Out-of-box and zero configuration circular dependencies detector, with both JavaScript API and Command Line Tool.

Downloads

2,818

Readme

circular dependencies scanner ⚡

npm version weekly downloads license

开箱即用循环依赖检测器,内置了 JavaScript API 和命令行工具两种使用方式,支持我们常用的所有文件类型,如 .js,.jsx,.ts,.tsx,.mjs,.cjs,.vue

从文件中取出 import/require/export 路径,并使用路径别名配置(alias)将其还原为真实路径(如果有别名的话),然后计算其中的循环引用关系并输出。

English | 中文

特性

  • 📦 支持常用的所有类型文件类型。
  • 💡 提供命令行工具,同时具备友好的控制台输出。
  • 🛠️ 提供 JavaScript API,同时具备良好的类型提示。
  • 🌩 小巧、精致、快速、可靠。

截图

下图为运行 ds -o circles.json 的示例:

cli.gif

如果你没有传递 output 选项,那么输出内容会直接打印到控制台,其中ts,js,vue 文件输出时对应 蓝色,黄色,绿色,如下所示:

output-snapshot

动机

一方面 NPM 上关于循环依赖检测的工具实在太少了,另一方面,他们或多或少都有一些令人恼火的问题,无法愉快的使用。

  1. 不可靠。用过的工具,没有那个能扫全的,猜测主要还是因为它们无法从多种多样的文件中类型中提取出对应的 import/require 路径。
  2. 并非是独立工具。他们通常以 webpack/rollup/vite 插件形式出现,依赖宿主提供的模块关系图分析循环引用,用起来有诸多限制,也很慢。

但现在,你只需要运行 ds,我们用到的所有类型的脚本文件 (.js,.jsx,.ts,.tsx,.mjs,.cjs,.vue) 都会被 TypeScript API 快速解析,并在控制台使用彩色打印友好地输出循环引用信息。

命令行工具(推荐)

全局安装之后,会获得一个可执行命令 dsdepscan 缩写):

pnpm i -g circular-dependency-scanner # or npm/yarn
cd path/to/execute # change directory
ds # run `ds` command

命令行工具内置详细的文档,任何情况下都可以通过 -h 选项,快速打印帮助信息。

ds [options] [path] # Automatically detect circular dependencies under the current directory and print the circles.

选项

ds -h # print help info
ds -V/--version # print cli version

ds # current dir by default
ds src # detect src directory...and so on.
ds --filter 'src/router/*.ts' # only print the circles matched the pattern.
ds --absolute # print absolute path.
ds --ignore output dist node_modules # path to ignore.
ds --output circles.json # output analysis into specified file.
ds --throw # exit with code 1 when cycles're found.

JavaScript API

有时候你可能想手动写脚本统计分析,这时候你可以引用内部提供的方法:

import { circularDepsDetect } from 'circular-dependency-scanner';

const results = circularDepsDetect({
  /**
   * Base path to execute command.
   * @default process.cwd()
   */
  cwd?: string;
  /**
   * Whether to use absolute path.
   * @default false
   */
  absolute?: boolean;
  /**
   * Glob patterns to exclude from matches.
   * @default ['node_modules']
   */
  ignore?: string[];
  /**
   * Glob pattern to filter output circles.
   * @default ['node_modules']
   */
  filter?: string;
});

QA

How does this tool handle alias paths?

该工具使用 get-tsconfig 来转换代码中的别名路径,你需要在最近的 tsconfig/jsconfig.json 中配置 compilerOptions.paths 以便工具能正确识别别名,未识别的别名将被丢弃。

哪些引用会被提取出来

简单来说,满足以下条件的引用路径会被摘取出来:

import test from './test'; // got './test'
import './test'; // got './test'
import('./test'); // got './test'
require('./test'); // got './test'
export * from './test'; // got './test'
export { test }; // got no export source

如果有的环没有意义,可以通过设置 --filter 选项进行筛选。

Monorepo 下运行

对文件引用的分析依赖于您提供的别名(alias)配置。因此,如果您在 monorepo 根目录下运行此命令,您可能会发现一些不同的项目可能包含相同的别名配置,这将导致结果不可靠。

如果你想分析多个项目,请逐个执行

引用

Issues

没有哪个工具一开始就是完美的,如果使用过程中遇到问题,欢迎提交 issue。