Skip to content

Contribution

Hrishikesh Paul edited this page Dec 20, 2020 · 1 revision

Installation

$ git clone https://github.com/hrishikeshpaul/ccf-asctb-reporter.git
$ cd ccf-asctb-reporter.git
$ npm install
$ ng serve -o

Creating Pure Component

$ ng g c components/<component_name> --project=v2 --skip-import  
  • Navigate to app.module.ts
  • Import created component
  • Add it to declarations to use across components.

Creating Smart Components/Modules

ng g c modules/<component_name> --project=v2 --skip-import 
  • Navigate to app.module.ts
  • Import created component
  • Add it to declarations to use across components.

Creating Services

  • Global Services
    $ ng generate s services/<service_name> --project=v2 --skipTests=true
    
  • Component Services
    $ ng generate s components/<component_name>/<service_name> --project=v2 --skipTests=true
    
  1. Getting Started
  2. Installation
  3. Visualization
  4. Compare
  5. Playground
  6. Search
  7. Report
  8. Indented List
  9. Debug Log
  10. Contributing
Clone this wiki locally