gl-ng-error-message-frontend

Common code and components designed for Angular 2+ to be used among web front-end development.

Usage no npm install needed!

<script type="module">
  import glNgErrorMessageFrontend from 'https://cdn.skypack.dev/gl-ng-error-message-frontend';
</script>

README

gl-ng-error-message-frontend

version downloads downloads

What is this repository for?

This package (glaucioleonardo-an****gular-error-message-frontend) is a common code and components designed for Angular 2+ to be used among web front-end development.

This library has been generated with Angular CLI version 11.2.8.

The full documentation is still under progress, however the components working perfectly (... or not!)

Table of contents

  1. Configurations:
    1.1. Importing the component into angular module

Importing the component into angular module

In order to use the component, it's necessary to import the library as dependency:

npm install gl-ng-error-message-frontend --save-dev

In app.module.ts include these angular imports:

..
import { GlNgErrorMessageFrontendModule } from 'gl-ng-error-message-frontend';
...

@NgModule({
  declarations: [
   ...
  ],
  imports: [
   ...
    GlNgErrorMessageFrontendModule,

   ...
  ],
  exports: [
   ...
  ]
})
export class AppModule { }