
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
ontimize-web-ngx-keycloak
Advanced tools
This library helps to use Keycloak in OntimizeWeb applications. It provides the implementation of the authentication service from ontimize-web-ngx using keycloak-angular.
Run the following command in order to install OntimizeWeb Keycloak library:
npm install ontimize-web-ngx-keycloak
In order use Keycloak as the default authentication implementation for your OntimizeWeb application you should provide the OKeycloakAuthService using the injection token O_AUTH_SERVICE in your AppModule. You have to provide also the configuration for Keycloak using the injection token O_KEYCLOAK_OPTIONS.
Use the code provided below as an example. In this process ensure that the configuration you are providing matches that of your client as configured in Keycloak.
import { KeycloakOptions, O_KEYCLOAK_OPTIONS, OKeycloakAuthService, OntimizeKeycloakModule } from 'ontimize-web-ngx-keycloak';
import { AppComponent } from './app.component';
const keycloakOptions: KeycloakOptions = {
config: {
url: 'http://localhost:8080/auth',
realm: 'your-realm',
clientId: 'your-client-id'
},
initOptions: {
onLoad: 'login-required'
}
};
@NgModule({
imports: [
...
OntimizeKeycloakModule
],
...
providers: [
{ provide: O_AUTH_SERVICE, useValue: OKeycloakAuthService },
{ provide: O_KEYCLOAK_OPTIONS, useValue: keycloakOptions }
],
})
export class AppModule { }
If you want to know more about these options and various other capabilities of the Keycloak client is recommended to read the JavaScript Adapter documentation.
Run ng build to build the project. The build artifacts will be stored in the dist/ directory.
FAQs
Ontimize Web framework using Angular 15
We found that ontimize-web-ngx-keycloak demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.