
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@impactdk/ngx-cms-formbuilder
Advanced tools
A module to easily add forms from Umbraco in your Angular application
This library is used to standardize form data sent from and to a CMS.
| CMS | Support |
|---|---|
| Umbraco Forms | Yes |
| Sitecore Forms | Coming |
imports: [
CmsFormbuilderModule.forRoot(
'https://url-to-umbraco/rest/v1/forms', // URL to CMS API
'umbraco' // Type of CMS
)
];
export class AppComponent implements OnInit {
formData?: CmsForm;
constructor(private formService: CmsFormService, private cd: ChangeDetectorRef) {}
ngOnInit() {
this.formService.getFormById('GUID').subscribe(data => {
this.formData = data;
this.cd.markForCheck();
});
}
}
<div *ngIf="formData"><cms-form-page [formData]="formData" [pageId]="currentPageId"></cms-form-page></div>
Currently we support almost all fields in Umbraco Forms and most workflows.
| Field | Support |
|---|---|
| Short answer | Yes |
| Long answer | Yes |
| Date | Yes (make sure your template checks for null) |
| Checkbox | Yes |
| File upload | No |
| Password | Yes |
| Multiple choice | Yes |
| Data Consent | Yes |
| Dropdown | Yes |
| Single choice | Yes |
| Title and description | Yes |
| Hidden | Yes |
| Recaptcha | No |
| Recaptcha2 | No |
FAQs
A module to easily add forms from Umbraco in your Angular application
We found that @impactdk/ngx-cms-formbuilder 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
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.