0.1.24 • Published 4 years ago

ngrx-vis v0.1.24

Weekly downloads
39
License
GPL-3.0-or-later
Repository
github
Last release
4 years ago

NgRx Vis

⚙️ This package is in a very early stage. 🐛You are welcome to test it and report an issue if you find any bug.

NgRx Vis visualizes the journey of each action in your project.

It displays in which file an action is created, where it is dispatched and how it is processed (by an effect or a reducer).

You get a documentation being always up to date. You will be able to identify effects that are too complex.

In future we plan to provide guidance to apply best practices that are recommended by the NgRx core-team.

How to use

# install ngrx-vis
npm install -D ngrx-vis

Create a script in your package.json executing NgRx Vis.

{
  "scripts": {
    "ngrx-vis": "ngrx-vis -p ./tsconfig.app.json"
  }
}
# generate report and store it in ngrx-vis/
npm run ngrx-vis

Options

Options:
  -V, --version                 output the version number
  -g, --glob <**/*.actions.ts>  Glob for files containing actions (default: "**/*.actions.ts")
  -p, --project <path>          Specify path to tsconfig
  -h, --help                    display help for command

Example call:
  $ ngrx-vis --project ./src/tsconfig.app.json

FAQ

Which versions of NgRx are supported?

You need at least NgRx 8 installed. NgRx Vis traces actions which are created with the createAction helper.

How is the graph built?

NgRx Vis does static code analysis. It looks for action declarations, resolves all references and identifies the usages of the respective action.

Limitations

Actions created at runtime

NgRx Vis is not capable of resolving actions that are created at runtime. Currently @ngrx/data-Actions wont show up either. In some of those cases where actions are generated based on a convention, it would be possible to write a Resolver that generates the needed meta data for the graph.

3rd Party Libraries

If a plugin for NgRx does not use vanilla NgRx actions, NgRx Vis cannot show them out-of-the-box. However, it is possible to write a Resolver that parses the AST for other Action types.

Credits

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

0.1.24

4 years ago

0.1.23

4 years ago

0.1.22

4 years ago

0.1.21

4 years ago

0.1.20

4 years ago

0.1.19

4 years ago

0.1.18

4 years ago

0.1.17

4 years ago

0.1.16

4 years ago

0.1.15

4 years ago

0.1.13

4 years ago

0.1.14

4 years ago

0.1.10

4 years ago

0.1.11

4 years ago

0.1.12

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago