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

ArchSense/scout

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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