GithubHelp home page GithubHelp logo

whitepoplar022 / ngd Goto Github PK

View Code? Open in Web Editor NEW

This project forked from compodoc/ngd

0.0 2.0 0.0 8.09 MB

View the dependencies tree of you Angular2 application

License: MIT License

HTML 15.80% JavaScript 3.33% TypeScript 77.32% CSS 3.56%

ngd's Introduction

Build status CircleCI Code Climate

CLI npm version
Core npm version
Compiler npm version
Transformer npm version

NGD: Angular Dependencies Graph

A tool that allows you to view your Angular application dependencies.

Generated Graphs (sample)

Sample Application

screenshots-4

Angular Material 2

ng-bootstrap

soundcloud-ngrx

Install

Install from npm:

npm install -g @compodoc/ngd-cli

Install from Yarn:

yarn global add @compodoc/ngd-cli

Usage the CLI

$ ngd --help

Usage: ngd [options]

Options:

  -h, --help                    Output usage information
  -V, --version                 Output the version number
  -f, --file [file]             Entry *.ts file
  -p, --tsconfig [config]       A tsconfig.json
  -l, --files [list]            A list of *.ts files
  -g, --display-legend          Display the legend in the generated graph (default: true)
  -s, --silent                  In silent mode, log messages aren't logged in the console
  -t, --output-formats [formats] Output formats (default: html,svg,dot,json)
  -d, --output [folder]         Where to store the generated files

1) use a tsconfig.json:

Run inside your project (where your tsconfig.json is located):

$ cd my-awesome-cli-angular-app/
$ ngd
$ # or
$ ngd -p ./tsconfig.json

Note: This will read the files entry point in your tsconfig.json and crawl your app. If the entry point is not found, all *.ts files will be crawled, but not those mentioned in the exclude property (more details).

2) provide an entry file:

$ cd my-awesome-cli-angular-app/
$ ngd -f src/main.ts

NOTE: The file you provide should contain your root component.

Usage the API

  1. Import the DotEngine and Compiler from @compodoc/ngd-transformer and @compodoc/ngd-compiler:
import { DotEngine } from '@compodoc/ngd-transformer';
import { Compiler } from '@compodoc/ngd-compiler';
  1. Create an instance of a compiler:
const compiler = new Compiler(files, {
    tsconfigDirectory: cwd
  }
);
  1. Get the found dependencies:
const deps = compiler.getDependencies();
  1. Pass those dependencies to the transformer:
const engine = new DotEngine({
  output: program.output,
  displayLegend: program.displayLegend,
  outputFormats: program.outputFormats.split(',')
});
  1. Generate the graph:
engine.generateGraph(deps).then(file => { ... });

Have a PR?

All contributions are welcome ;)

License

The MIT License (MIT) Copyright (c) 2016 - Wassim CHEGHAM

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

ngd's People

Contributors

manekinekko avatar vogloblinsky avatar mko avatar moneal avatar

Watchers

James Cloos avatar 记忆者 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.