Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
effector-inspector
Advanced tools
| Dark theme and unit tracing | Units in files | | ----------------------------------------------- | ----------------------------------------- | | ![Dark-Traces](https://i.imgur.com/m9arc8u.png) | ![Units](ht
Dark theme and unit tracing | Units in files |
---|---|
npm install --dev effector-inspector
or
yarn add -D effector-inspector
effector/babel-plugin
or @effector/swc-plugin
set up in your project. These plugins add metadata to all effector's units, which is then used by effector-inspector.Check out the documentation of effector/babel-plugin
or @effector/swc-plugin
.
inspector
in your application's entrypoint (something like index.ts
or client.tsx
).import {createInspector} from 'effector-inspector';
createInspector();
One way to do it is to attach inspector to units manually:
import {attachInspector} from 'effector-inspector';
// single units
attachInspector($store);
attachInspector(event);
attachInspector(effectFx);
// or list of them
attachInspector([
$store,
event,
effectFx,
// any number of units in the list
]);
// or by domain
attachInspector(someDomain);
The effector-root
library can be used for convenience, as it provides common root domain for all units.
// index.ts
import {attachInspector, createInspector} from 'effector-inspector';
import {root} from 'effector-root';
createInspector();
attachInspector(root);
Check out effector-root
documentation here.
npm install effector
npm install --dev effector-logger effector-inspector
or yarn
yarn add effector
yarn add -D effector-logger effector-inspector
effector
to effector-logger
client.tsx
or index.tsx
)Initialize effector logger in it first lines.
import {createInspector} from 'effector-inspector';
createInspector();
By default: CTRL+B
in your application
FAQs
| Dark theme and unit tracing | Units in files | | ----------------------------------------------- | ----------------------------------------- | | ![Dark-Traces](https://i.imgur.com/m9arc8u.png) | ![Units](ht
We found that effector-inspector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.