Skip to content
This repository has been archived by the owner on Feb 7, 2023. It is now read-only.
/ formation Public archive

⌨️ Making Angular 1 forms suck less.

License

Notifications You must be signed in to change notification settings

darkobits/formation

Repository files navigation

formation

⚠️ Deprecation Notice

This project is no longer actively maintained.


Formation is a form framework for Angular 1.5+ designed for medium-to-large applications that require consistent, robust forms. It aims to reduce template size by moving business logic to controllers, which also encourages code-reuse and improves consistency.

Install

$ npm i @darkobits/formation
import Formation, {
  configure as configureFormation
} from '@darkobits/formation';

angular.module('MyApp', [
  Formation
]);

// Configure global error behavior.
configureFormation({
  showErrorsOn: 'touched, submitted'
});

Changelogs

Documentation

The Formation documentation is available on GitBook.