Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Latest commit

 

History

History
30 lines (22 loc) · 514 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 514 Bytes

Scout

Generate services graph

Installation

npm install @archsense/scout

How to use

Command line

npx scout nestjs <config-file-path> -o <output-file-path>

API

const Scout = require('scout');

const nestjsScout = new Scout({
  configPath: '<path-to-config-file>'
  framework: 'nestjs'
});

const dependencyTree = await nestjsScout.analyze();
await nestjsScout.saveFile(dependencyTree);

Current support

  • Supported languages
    • Typescript
  • Supported framework
    • NestJs