Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
@craftzing/angular-ui-library
Advanced tools
Run npm i @craftzing/angular-ui-library
.
Next, install the dependencies the library is using:
npm i @angular/cdk @popperjs/core ng2-date-picker dayjs
Add this to the styles.scss
file in the root folder of your Angular project
@import "@craftzing/angular-ui-library/styles";
# Optionally you can import reset styles for the project
@import "@craftzing/angular-ui-library/styles/reset";
Every component is exposed as a standalone module (similar to angular/material) and as part of the general fod-ui-library. This enables consumers to import the whole library (which will include all components in the application build) or cherry pick only the necessary components.
Eg import { FodUiLibraryModule } from '@craftzing/angular-ui-library'
or import { FodButtonModule, FodHeadingModule } from '@craftzing/angular-ui-library'
To set the right path for all the assets of the component library, you have to add the following to your assets configuration in the angular.json
file.
{
"options": {
// ... other options
"assets": [
// ... other assets,
{
"glob": "**/*",
"input": "./node_modules/@craftzing/angular-ui-library/assets",
"output": "/assets/"
}
]
}
}
FAQs
## Installation
The npm package @craftzing/angular-ui-library receives a total of 0 weekly downloads. As such, @craftzing/angular-ui-library popularity was classified as not popular.
We found that @craftzing/angular-ui-library demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.