lynx-users-administration
v1.1.5
Published
Users administration module for the Lynx framework
Downloads
5
Maintainers
Readme
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);