| Author: | |
|---|---|
| Official Page: | Go to website |
| Publish Date: | December 10, 2020 |
| License: |
Description:
dag is an Angular service designed to assist in creating and managing a directed acycylic graph model in an Angular application.
With this library, you can add or remove steps to the DAG and the model will be properly updated.
Installation:
# Yarn $ yarn add @ngneat/dag --save # NPM $ npm i @ngneat/dag--save
Import:
// workflow-builder.component.ts
@Component({
selector: 'app-workflow-builder',
...
providers: [DagManagerService]
})
export class WorkflowBuilderComponent {}