
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
@benhalverson/my-awesome-lib
Advanced tools
A modern Angular component library providing reusable building blocks with Material Design theming
A modern Angular component library providing reusable building blocks with Material Design theming using CSS variables.
We provide building blocks, not complete features. Instead of a "Login Component", we give you LibInput, LibCheckbox, LibButton, etc. that you compose into your own login form. This approach offers:
# Install dependencies
pnpm add @angular/cdk @angular/material @angular/forms
In your global styles.css:
@import '../my-awesome-lib/src/lib/theme.css';
import {
LibButton,
LibCard,
LibTable,
LibInput,
LibCheckbox,
LibFormField
} from '@benhalverson/my-awesome-lib';
import { ReactiveFormsModule } from '@angular/forms';
@Component({
imports: [ReactiveFormsModule, LibInput, LibCheckbox, LibButton, LibCard],
template: `
<lib-card [elevated]="true">
<form [formGroup]="loginForm" (ngSubmit)="onSubmit()">
<lib-form-field>
<lib-input
label="Email"
type="email"
formControlName="email"
[required]="true"
></lib-input>
</lib-form-field>
<lib-form-field>
<lib-input
label="Password"
type="password"
formControlName="password"
[required]="true"
></lib-input>
</lib-form-field>
<lib-checkbox formControlName="rememberMe">
Remember me
</lib-checkbox>
<lib-button type="submit" variant="primary">Sign In</lib-button>
</form>
</lib-card>
`
})
export class MyLoginComponent {
loginForm = this.fb.group({
email: ['', [Validators.required, Validators.email]],
password: ['', [Validators.required]],
rememberMe: [false]
});
constructor(private fb: FormBuilder) {}
onSubmit() {
if (this.loginForm.valid) {
console.log(this.loginForm.value);
}
}
}
# Build the library
nx build my-awesome-lib
# Run tests
nx test my-awesome-lib
# Lint
nx lint my-awesome-lib
Run nx serve to see all components in action with a complete authentication flow and dashboard demo.
MIT
FAQs
A modern Angular component library providing reusable building blocks with Material Design theming
We found that @benhalverson/my-awesome-lib demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.