
Research
/Security News
77 Firefox Extensions Linked to Crypto Wallet and Credential Theft
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.
@ng-forge/dynamic-forms-bootstrap
Advanced tools
Bootstrap 5 integration for @ng-forge/dynamic-forms. Pre-built Bootstrap form components.
Bootstrap 5 field components for @ng-forge/dynamic-forms.
Stability: This library is built on Angular Signal Forms, which is stable as of Angular v22. Check the compatibility matrix below for supported Angular versions.
| Angular | @ng-forge/dynamic-forms-bootstrap |
|---|---|
| 22.x | 1.x |
| 21.x | 0.x (experimental) |
Versioned in lockstep with @ng-forge/dynamic-forms. The 0.x line targets Angular 21 (experimental Signal Forms). Each release pins its Angular requirement via peerDependencies; npm warns on a mismatch.
npm install @ng-forge/dynamic-forms @ng-forge/dynamic-forms-bootstrap bootstrap
// styles.scss
@import 'bootstrap/dist/css/bootstrap.min.css';
// app.config.ts
import { provideDynamicForm } from '@ng-forge/dynamic-forms';
import { withBootstrapFields } from '@ng-forge/dynamic-forms-bootstrap';
export const appConfig: ApplicationConfig = {
providers: [provideDynamicForm(...withBootstrapFields())],
};
import { DynamicForm, type FormConfig, type InferFormValue } from '@ng-forge/dynamic-forms';
@Component({
imports: [DynamicForm],
template: `<form [dynamic-form]="config" (submitted)="onSubmit($event)"></form>`,
})
export class MyFormComponent {
config = {
fields: [
{ key: 'email', type: 'input', value: '', label: 'Email', required: true, email: true, props: { floatingLabel: true } },
{ type: 'submit', key: 'submit', label: 'Submit', props: { variant: 'primary' } },
],
} as const satisfies FormConfig;
onSubmit(value: InferFormValue<typeof this.config.fields>) {
console.log('Form submitted:', value);
}
}
provideDynamicForm(
...withBootstrapFields({
floatingLabel: true,
size: 'lg',
variant: 'primary',
}),
);
Input, Select, Checkbox, Toggle, Button, Submit, Next, Previous, Textarea, Radio, Multi-Checkbox, Datepicker, Slider
See GitHub Releases.
Contributions are welcome! Please read our Contributing Guide.
MIT © ng-forge
FAQs
Bootstrap 5 integration for @ng-forge/dynamic-forms. Pre-built Bootstrap form components.
The npm package @ng-forge/dynamic-forms-bootstrap receives a total of 545 weekly downloads. As such, @ng-forge/dynamic-forms-bootstrap popularity was classified as not popular.
We found that @ng-forge/dynamic-forms-bootstrap 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.

Research
/Security News
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.

Security News
NIST disclosed an unreleased AI tool called V-etalon and opened a broad inquiry into NVD modernization after years of automation plans produced no public enrichment system.

Security News
In his AI Council 2026 talk, Feross Aboukhadijeh covers recent package compromises, vulnerability discovery, and a more automated security model.