
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
@trigo/keycloak-api
Advanced tools
const KeycloakApi = require('@trigo/keycloak-api');
const config = {
authorizationEndpoint: 'https://<keycloak>/auth',
clientId: '<clientId>',
username: '<username>', // admin user
password: '<password>',
};
const api = new KeycloakApi(config);
await api.waitForKeycloak(); // required
Ever function requires a function param called tokenProvider. It should return a access token.
const tokenProvider = async () => {
const res = await api.getToken({
realm: 'master',
grantType: 'password',
clientId: 'admin-cli',
username: '<username>',
password: '<password>',
});
return res.data.access_token;
};
We will refer to this example in the following function calls.
const {statusCode, data} = await api.createRealm({ realm: 'sparta', tokenProvider })
Get list of users. Optional query object as key value.
const query = {
username: 'leonidas',
};
const {statusCode, data} = await api.getUsers({ realm: 'sparta', query, tokenProvider });
statusCode contains the HTTP status code.
data array of Keycloak Users.
Creates a new user.
const user = {
username: 'leonidas',
};
const {statusCode, data} = await api.createUser({ realm: 'sparta', user, tokenProvider });
statusCode contains the HTTP status code.
data the keycloak user object.
Returns all keycloak Groups
const {statusCode, data} = await api.getGroups({ realm: 'sparta', tokenProvider });
statusCode contains the HTTP status code.
data array of keycloak groups.
Creates a new user group.
const group = {
name: 'Spartiates',
attributes: {
'size': ['300'],
},
};
const parentGroupId = 300; // Optional
const {statusCode, data} = await api.createGroup({ realm: 'sparta', group, parentGroupId, tokenProvider });
statusCode contains the HTTP status code.
data the keycloak group object.
Deletes a user group by groupId
const {statusCode} = await api.deleteGroup({ realm: 'sparta', groupId: 300, tokenProvider });
statusCode contains the HTTP status code.
If group exists it sets the parent otherwise it creates the group as a child
const {statusCode} = await api.makeGroupChildOfGroup({ realm: 'sparta', parentGroupId: '42', group: { id: '43', name: 'child group' }, tokenProvider });
statusCode contains the HTTP status code.
FAQs
Node.js Keycloak Admin API Wrapper
The npm package @trigo/keycloak-api receives a total of 40 weekly downloads. As such, @trigo/keycloak-api popularity was classified as not popular.
We found that @trigo/keycloak-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.