8000 GitHub - ArchSense/orakul: Visualize the architecture that make sense
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Apr 19, 2023. It is now read-only.

ArchSense/orakul

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Orakul

Project architecture visualization tool

How to use

Configure npm script for a project

  1. Install the dependency npm install --save-dev @archsense/orakul-starter

  2. Configure npm script

{
  ...
  "scripts": {
    ...
    "orakul": "npx orakul nestjs -p <path-to-root-folder>",
    ...
  }, 
}

Configuration file for monorepo

  1. At the root of your project create the configuration file scout.json with the following properties:
{  
  "id": "<project/domain-id>",
  "src": "<path-to-src-folder | microservices>",
  "include": [
    "<list-of-folders-in-src-to-include-optional>"
  ],
  "exclude": [
    "<list-of-folders-in-src-to-exclude-optional>"
  ]
}
  1. Configure npm script
{
  ...
  "scripts": {
    ...
    "orakul": "npx orakul nestjs -c <path-to-config-folder>",
    ...
  }, 
}
  1. Go to http://localhost:4501 to see the visualization

Why Orakul

  1. Just CLI command - no additional code required
  2. Support of NestJs microservices
  3. Different levels of visualizations: modules level and low level
  4. See only what you are interested in

About

Visualize the architecture that make sense

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0