
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.