NgxValidate
This project is still a work-in-progress and, although it works fine, it should be used with caution.
Live demo
Stackblitz Example
Installation
yarn add @ngx-validate/core
or
npm install @ngx-validate/core
Usage
Import core module to your main module as follows:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { ReactiveFormsModule } from '@angular/forms';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { NgxValidateCoreModule } from '@ngx-validate/core';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, AppRoutingModule, ReactiveFormsModule, NgxValidateCoreModule.forRoot()],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule {}
Features