Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@boundstate/tier-one-dgeni
Advanced tools
Docs generator for Angular frameworks.
$ npm install --save-dev @boundstate/tier-one-dgeni
Add .frameworkrc
or .frameworkrc.json
to your project root:
{
"srcDir": "src",
"faviconPath": "src/favicon.ico",
"scssPath": "src/scss/my-framework.scss"
}
Run docs app, watching for changes:
npx tier-one-dgeni watch
baseDir
: (optional) path to project root containing package.json
.
Also used in combination with repository URL to determine source code URLs.srcDir
: (optional) path to source code containing index.ts
(relative to baseDir
)faviconPath
: (optional) path to favicon to be used by docs app (relative to baseDir
)scssPath
: path to SCSS file to be used by docs app (relative to baseDir
)Add a demo for a component by creating a _demo
folder within the component folder. Create a file that exports a module with a name ending in DemoModule
(e.g. ButtonDemoModule
).
DemoService#setFormGroup(formGroup: FormGroup)
Renders debug information about form controls.
@import {DemoService} from '@boundstate/tier-one-dgeni';
@Component({templateUrl: 'demo.html'})
class InputTextDemoComponent {
formGroup = new FormGroup({
'text1': new FormControl(''),
'text2': new FormControl('', Validators.required)
});
constructor(demo: DemoService) {
demo.setFormGroup(this.formGroup);
}
}
FAQs
Docs generator for Angular frameworks.
The npm package @boundstate/tier-one-dgeni receives a total of 1 weekly downloads. As such, @boundstate/tier-one-dgeni popularity was classified as not popular.
We found that @boundstate/tier-one-dgeni demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.