/lynx-users-administration

User administration module for the Lynx framework

Primary LanguageTypeScriptApache License 2.0Apache-2.0

lynx-users-administration

Users administration module for the Lynx framework

Installation

npm install --save lynx-users-administration

Dependencies

You should install also an administration theme to correctly use this module. For example the Light Bootstrap Theme.

Usage

In your main app file:

import LightBootstrapAdminModule from "lynx-light-bootstrap-admin-theme";
import UsersAdminModule from "lynx-users-administration";
...

let myConfig = new ConfigBuilder(__dirname).build();

const app = new App(myConfig, [new LightBootstrapAdminModule(), new UsersAdminModule()]);
app.startServer(port);