You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Madge** is a developer tool for generating a visual graph of your module dependencies, finding circular dependencies, and giving you other useful info. Joel Kemp's awesome [dependency-tree](https://github.com/mrjoelkemp/node-dependency-tree) is used for extracting the dependency tree.
20
16
21
-
22
17
* Works for JavaScript (AMD, CommonJS, and ES6 modules)
23
18
* Also works for CSS preprocessors (Sass, Stylus, and Less)
24
19
* NPM installed dependencies are excluded by default (can be enabled)
@@ -36,19 +31,19 @@ Read the [changelog](CHANGELOG.md) for latest changes.
36
31
> Graph generated from madge's own code and dependencies.
Only one syntax is used by default. You can use both though if you're willing to take the degraded performance. Put this in your madge config to enable mixed imports.
395
391
396
392
For ES6 + CommonJS:
393
+
397
394
```json
398
395
{
399
-
"detectiveOptions": {
400
-
"es6": {
401
-
"mixedImports": true
402
-
}
403
-
}
396
+
"detectiveOptions": {
397
+
"es6": {
398
+
"mixedImports": true
399
+
}
400
+
}
404
401
}
405
402
```
406
403
407
404
For TypeScript + CommonJS:
405
+
408
406
```json
409
407
{
410
-
"detectiveOptions": {
411
-
"ts": {
412
-
"mixedImports": true
413
-
}
414
-
}
408
+
"detectiveOptions": {
409
+
"ts": {
410
+
"mixedImports": true
411
+
}
412
+
}
415
413
}
416
414
```
417
415
@@ -421,11 +419,11 @@ Put this in your madge config.
421
419
422
420
```json
423
421
{
424
-
"detectiveOptions": {
425
-
"es6": {
426
-
"skipTypeImports": true
427
-
}
428
-
}
422
+
"detectiveOptions": {
423
+
"es6": {
424
+
"skipTypeImports": true
425
+
}
426
+
}
429
427
}
430
428
```
431
429
@@ -435,11 +433,11 @@ Put this in your madge config.
435
433
436
434
```json
437
435
{
438
-
"detectiveOptions": {
439
-
"ts": {
440
-
"skipTypeImports": true
441
-
}
442
-
}
436
+
"detectiveOptions": {
437
+
"ts": {
438
+
"skipTypeImports": true
439
+
}
440
+
}
443
441
}
444
442
```
445
443
@@ -449,14 +447,14 @@ Put this in your madge config.
449
447
450
448
```json
451
449
{
452
-
"detectiveOptions": {
453
-
"ts": {
454
-
"skipAsyncImports": true
455
-
},
456
-
"tsx": {
457
-
"skipAsyncImports": true
458
-
}
459
-
}
450
+
"detectiveOptions": {
451
+
"ts": {
452
+
"skipAsyncImports": true
453
+
},
454
+
"tsx": {
455
+
"skipAsyncImports": true
456
+
}
457
+
}
460
458
}
461
459
```
462
460
@@ -468,10 +466,10 @@ Ensure you have this in your `.tsconfig` file.
468
466
469
467
```json
470
468
{
471
-
"compilerOptions": {
472
-
"module": "commonjs",
473
-
"allowJs": true
474
-
}
469
+
"compilerOptions": {
470
+
"module": "commonjs",
471
+
"allowJs": true
472
+
}
475
473
}
476
474
```
477
475
@@ -493,12 +491,12 @@ brew install graphviz
493
491
494
492
Try running madge with a different layout, here's a list of the ones you can try:
495
493
496
-
***dot**"hierarchical" or layered drawings of directed graphs. This is the default tool to use if edges have directionality.
494
+
***dot**"hierarchical" or layered drawings of directed graphs. This is the default tool to use if edges have directionality.
497
495
498
496
***neato** "spring model'' layouts. This is the default tool to use if the graph is not too large (about 100 nodes) and you don't know anything else about it. Neato attempts to
499
497
minimize a global energy function, which is equivalent to statistical multi-dimensional scaling.
500
498
501
-
***fdp**"spring model'' layouts similar to those of neato, but does this by reducing forces rather than working with energy.
499
+
***fdp**"spring model'' layouts similar to those of neato, but does this by reducing forces rather than working with energy.
502
500
503
501
***sfdp** multiscale version of fdp for the layout of large graphs.
504
502
@@ -511,7 +509,9 @@ minimize a global energy function, which is equivalent to statistical multi-dime
511
509
## Contributors
512
510
513
511
This project exists thanks to all the people who contribute.
@@ -520,35 +520,35 @@ Thanks to the awesome people below for making donations! 🙏[Donate](https://pa
0 commit comments