Socket
Socket
Sign inDemoInstall

@clausehq/flows-analysis

Package Overview
Dependencies
Maintainers
9
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clausehq/flows-analysis

A utility for doing static analysis on flows


Version published
Weekly downloads
1
Maintainers
9
Weekly downloads
 
Created
Source

Flow Analysis

This package contains some utilities for performing parsing and static analysis of flow definitions.

Example Usage

const { findDependencies } = require('@clausehq/flows-analysis');

const deps = findDependencies(myFlow);
/** deps has value
{
  vault: false,
  organization: {
    id: false,
  },
  contract: {
    id: false,
    attachments: true,
    state: false,
    clauseMap: false,
  },
  clause: {
    id: false,
    attachments: false,
    state: false,
    data: false,
  },
  flow: {
    name: false,
    id: false,
  },
  flows: false,
}
*/

FAQs

Package last updated on 21 Jan 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc