@digital-enabler/auth
v2.0.3
Published
### Digital Enabler - Authentication microfrontend
Downloads
29
Readme
Auth microfrontend
Digital Enabler - Authentication microfrontend
The Auth microfrontend creates a polling system that checks the status of the user session at a certain time interval and notifies with an event if this section has expired. The Auth works in the background of the tool in which it is mounted.
NOTE: See here on how to mount a microfrontend and also here to more info about Microfrontend application for Digital Enabler.
This project is also available from the following CDN.
Pre-requisites
Before you continue you need to
- have NPM installed
- have NodeJS installed
- have VueJS and Vue-CLI installed
- have a GitHub account
- use VisualStudio Code or IntelliJ Idea as your development IDE
Project management
Installation
Open a Terminal window in the project folder and go inside the app folder, then launch the command:
npm install
NOTE: When install finished, do not care about the warnings on the versions and vulnerability problems reported, and DO NOT launch the
npm audit fix
ornpm audit fix –force commands
Compiles and hot-reloads for development
npm run serve
Compiles and minifies for production
npm run build
Lints and fixes files
npm run lint
NOTE: Alternatively to the command indicated above you can use the VueUI browser interface
Configs file
To work properly the Auth needs an auth-config.json file with this settings:
{
"mf": "Auth",
"api": "https://[generic_api_location]/api", //Url path to the backend api
}
This json file must to be stored and setted as described here and also here.
Exposed listeners
This is a listeners list that you can activate with a dispatchEvent using the relative name exposed.
- error-login-callback: calls a method to permit the user to login;
- logout-callback: calls a method to logout the user;