npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ng-im-form-bootstrap

v1.1.2

Published

A flexible and elegant Angular UI library for building submittable dynamic forms — powered by Bootstrap.

Downloads

13

Readme

NG IM FORM powered by Bootstrap

Angular Bootstrap Font Awesome License

A flexible and elegant Angular UI library for building submittable dynamic forms — powered by Bootstrap styling and drag-and-drop organization.
Easily create and manage form structures without writing a single line of code.


Features

Dynamic Section Management – Add, rename, and remove multiple form sections.
Rich Field Types – Supports text fields, text areas, select boxes, and radio button groups.
Drag & Drop Reordering – Reorder both sections and fields visually.
Bootstrap-Based Styling – Modern and responsive UI out of the box.
Configurable Field Settings – Set labels, placeholders, validations, and default values.
Reactive & Submittable – Fully functional Angular Reactive Forms.
JSON Export/Import – Save or load form structures easily.
Reusable Angular Library – Designed for modular integration into any Angular project.
Lightweight & Extensible – Add new field types or behaviours with minimal effort.


Installation

Install the library and its required peer dependencies via npm. Use the following commands:

npm install ng-im-form-bootstrap npm install [email protected] npm install @fortawesome/[email protected]


Configure Styles

Add Bootstrap and Font Awesome styles to your global configuration in angular.json:

"styles": [
  "node_modules/bootstrap/dist/css/bootstrap.min.css",
  "node_modules/@fortawesome/fontawesome-free/css/all.min.css",
  "src/styles.css"
],
"scripts": []

Alternatively, if you prefer to import styles directly in your global stylesheet (styles.scss or styles.css):

@import "bootstrap/dist/css/bootstrap.min.css";
@import "@fortawesome/fontawesome-free/css/all.min.css";

Import the Library Module

In your main app module (app.module.ts), import the FormBuilderModule or FormPreviewModule:

import { FormBuilderModule  } from 'ng-im-form-bootstrap';

@NgModule({
  imports: [
    BrowserModule,
    ReactiveFormsModule,
    FormBuilderModule
  ],
  bootstrap: [AppComponent]
})
export class AppModule {}

Verify Installation

Once installed, you can use the component selector in any template:

<ng-im-form-builder [preset]="null"><ng-im-form-builder>

If you see Bootstrap styling and Font Awesome icons properly rendered, your setup is complete 🎉


Current Version: 1.1.2

  • Some bugs and issues have been fixed.
  • Added 'JSON as string' type to the form body type selection.
  • Added 60 seconds timeout functionality to the Form Preview HTTP request.
  • Changed Form Preview module's response UI.