![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@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 5,381 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 10 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.