
Security News
OpenGrep Restores Fingerprinting in JSON and SARIF Outputs
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
@lucca-front/ng
Advanced tools
This is the part of the framework dedicated to angular. It contains a set of tools and components to help develop an agular web application like
ng-valid
, ng-empty
) to @lucca-front/sccs
stylesee demo (DIP) for more details on what is available
npm install @lucca-front/ng --save
Each component will have its own module to facilitate dependency injection. So if you want a specific component just do that
import { NgModule } from '@angular/core';
import { LuLolModule } from '@lucca-front/ng';
@NgModule({
imports: [
LuLolModule,
],
providers: [],
})
export class MyModule { }
If you dont want to pick'n'mix and just import everything from lucca-front/ng, do that
import { NgModule } from '@angular/core';
import { LuRootModule } from '@lucca-front/ng';
@NgModule({
imports: [
LuRootModule,
],
providers: [],
})
export class MyModule { }
DIP
the code is split between 2 folders:
/src
: that's the source code, the code that will be published/demo
: the code used for the demo web app and also serve as development environmentboth are angular-cli applications.
You can find a step by step procedure to add a component to the lib and its page on the demo, then start the development of said component in the file step-by-step.md
See golden rules for contributing in the CONTRIBUTING.md
the versionning strategy for all packages under @lucca-front
follows the same rules as the ones under @angular
. Every package will have the same version to avoid having /scss
version 2.1 depending on /icons
1.3 but /ng
depends on /scss
1.4 in its version 2.2
.
so to avoid unnecessary complexity, all sub-packages will change version at the same time:
/ng#1.3.0
depends on/scss#1.3.0
which depends on/icons#1.3.0
FAQs
A library of icons made by the team @Lucca
The npm package @lucca-front/ng receives a total of 7,390 weekly downloads. As such, @lucca-front/ng popularity was classified as popular.
We found that @lucca-front/ng demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.