Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@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
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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.