https://github.com/jellyfishsolutions/lynx-auth
Authentication module for the Lynx framework
https://github.com/jellyfishsolutions/lynx-auth
authentication lynx lynx-framework node
Last synced: 4 months ago
JSON representation
Authentication module for the Lynx framework
- Host: GitHub
- URL: https://github.com/jellyfishsolutions/lynx-auth
- Owner: jellyfishsolutions
- License: apache-2.0
- Created: 2018-02-14T14:31:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T16:13:06.000Z (over 3 years ago)
- Last Synced: 2025-11-27T09:09:34.132Z (7 months ago)
- Topics: authentication, lynx, lynx-framework, node
- Language: HTML
- Size: 1.58 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lynx-auth
Authentication module for the Lynx framework
## Installation
```
npm install lynx-auth --save
```
## Usage
In your main app file:
```
import AuthModule from "lynx-auth";
...
let myConfig = new ConfigBuilder(__dirname).build();
const app = new App(myConfig, [new AuthModule()]);
app.startServer(port);
```
## Customization
You can override the settings of the `AuthController` using the `AuthModule.settings`.
Please check the `src/views/auth` and the `src/locale` folders to create further customizations.