client-oidc
v1.0.41
Published
An implementation for OIDC
Downloads
1,543
Readme
Client-oidc for Nuxt 3
A basic implementation for an oidc client for Nuxt 3.
Quick Setup
Install the module to your Nuxt application with one command:
npx nuxi module add client-oidc
or
npm install client-oidc
export default defineNuxtConfig({
...
modules: ["client-oidc"],
...
});
And manually add client-oidc in nuxt.config.ts
export default defineNuxtConfig({
...
clientOidc: {
// Add your config here
},
...
});
Config options
There are different options possible in the config. Some are mandatory and others are optional. Here follows a list of all options:
Config with .env file
# Public config (for client-side access)
NUXT_PUBLIC_CLIENT_OIDC_IS_ENABLED=
NUXT_PUBLIC_CLIENT_OIDC_ENDPOINTS_BASE_URL=
NUXT_PUBLIC_CLIENT_OIDC_ENDPOINTS_LOGIN=
NUXT_PUBLIC_CLIENT_OIDC_ENDPOINTS_LOGIN_CALLBACK=
NUXT_PUBLIC_CLIENT_OIDC_ENDPOINTS_ACCESS_TOKEN=
NUXT_PUBLIC_CLIENT_OIDC_ENDPOINTS_USERINFO=
NUXT_PUBLIC_CLIENT_OIDC_ENDPOINTS_LOGOUT=
NUXT_PUBLIC_CLIENT_OIDC_ENDPOINTS_LOGOUT_CALLBACK=
# Private config (for server-side only)
NUXT_CLIENT_OIDC_CONFIG_ISSUER=
NUXT_CLIENT_OIDC_CONFIG_CLIENT_ID=
NUXT_CLIENT_OIDC_CONFIG_REDIRECT_URL=
NUXT_CLIENT_OIDC_CONFIG_ACR_VALUES=
NUXT_CLIENT_OIDC_CONFIG_POST_LOGOUT_REDIRECT_URIS=
NUXT_CLIENT_OIDC_CONFIG_CLIENT_SECRET=
NUXT_CLIENT_OIDC_CONFIG_SCOPE=
NUXT_CLIENT_OIDC_CONFIG_ALLOWED_ROLES=
export default defineNuxtConfig({
...
runtimeConfig: {
public: {
clientOidc: {
isEnabled: '',
endpoints: {
baseUrl: '',
login: '',
loginCallback: '',
accessToken: '',
userinfo: '',
logout: '',
logoutCallback: '',
},
},
},
clientOidc: {
config: {
issuer: '',
clientId: '',
redirectUrl: '',
acrValues: '',
postLogoutRedirectUris: '',
clientSecret: '',
scope: '',
allowedRoles: '',
},
},
},
});
Config without using environment variables
export default defineNuxtConfig({
...
clientOidc: {
isEnabled: '', // Type: Boolean - Enable or disable the module easily
config: {
issuer: '', // * Type: String - The OIDC provider which authenticates users and issues ID tokens, access tokens, ...
clientId: '', // * Type: String - A unique identifier assigned to a client application, used to identify and authenticate the client when interacting with the OIDC provider.
clientSecret: '', // * Type: String
redirectUrl: '', // * Type: String
acrValues: '', // * Type: String
scope: '', // * Type: String
allowedRoles: '', // * Type: String
postLogoutRedirectUris: '', // * Type: String
response_type: 'code',
id_token_signed_response_alg: 'RS256',
userinfo_signed_response_alg: 'RS256',
authorizationUri: '/authorize',
tokenUri: '/access_token',
jwkUri: '/connect/jwk_uri',
userInfoUri: '/userinfo',
introspectionUri: '/introspect',
endSessionUri: '/connect/endSession',
},
endpoints: {
baseUrl: '', // Type: String
login: '', // Type: String
loginCallback: '', // Type: String
accessToken: '', // Type: String
userinfo: '', // Type: String
logout: '', // Type: String
logoutCallback: '', // * Type: String
},
},
...
});
Contribution
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release