New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

ircc-ds

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ircc-ds

Documentation Site: [Compodoc](https://compodoc.app/guides/getting-started.html)

latest
npmnpm
Version
0.0.2-beta.0
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

Compodoc

Documentation Site: Compodoc

Getting started

  • From the root folder install dev-dependencies:
cd ds-sdc-dev
npm install
  • Compodoc looks for a tsconfig.doc.json file with the location of your component and any files you want to exclude.
{
  "include": [
    "component-library/component-lib/src/lib/**/*.ts",
    "component-library/component-lib/src/lib/**/**/*.ts",
    "component-library/component-lib/src/lib/shared/**/**/*.ts",
  ],
  "exclude": [
    "src/**/*.spec.ts"
  ]
}
  • Launch interactive documentation server with the command below and open the link generated in your terminal:
npm run compodoc

Project structure

Compodoc starts at the folder level of the tsconfig file provided with -p option.

.
├── src
│ ├── app
│ │ ├── app.component.ts
│ │ └── app.module.ts
│ ├── main.ts
│ └── ...
├── tsconfig.app.json
├── tsconfig.doc.json
└── tsconfig.json

Adding developer documentation / comments

Use code comments to clearly explain @Inputs, any mandatory and optional configuration, lifecycle methods or custom methods.

Comments must be ABOVE the relevant @Input or method as such:

/**
* FormGroup aggregates the values of each child FormControl into one object, with each control name as the key. It calculates its status by reducing the status values of its children. For example, if one of the controls in a group is invalid, the entire group becomes invalid.
*/

FAQs

Package last updated on 05 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts