Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smartive/zitadel-node
ZITADEL SDK for Node.js
https://github.com/smartive/zitadel-node
api authn authz grpc nodejs zitadel
Last synced: about 4 hours ago
JSON representation
ZITADEL SDK for Node.js
- Host: GitHub
- URL: https://github.com/smartive/zitadel-node
- Owner: smartive
- License: apache-2.0
- Created: 2022-10-21T07:53:33.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-13T16:50:28.000Z (7 months ago)
- Last Synced: 2024-04-14T06:58:31.061Z (7 months ago)
- Topics: api, authn, authz, grpc, nodejs, zitadel
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@zitadel/node
- Size: 1.05 MB
- Stars: 15
- Watchers: 7
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ZITADEL Node.js
This is the ZITADEL Node.js SDK.
This library contains the compiled and generated [gRPC](https://grpc.io/)
service clients for the ZITADEL API.Also it contains helpers to create the service clients to access the API.
With two `MetadataProvider` (`accessTokenProvider` and `serviceAccountProvider`),
the clients can be created with the correct authentication already in place.Head over to [the examples](https://github.com/smartive/zitadel-node/tree/main/examples) to see implementation
examples.This library allows you to use the ZITADEL API in Node.js, it is not
compatible with the browser since it requires gRPC (and not gRPC-Web).
Furthermore, the library heavily relies on `openidconnect` and `crypto`
implementations since it handles RSA keys.This library does _not_ provide authentication helpers for web applications.
If you want to use `passport js` and OAuth 2.0 introspection, head over to
[node-passport-zitadel](https://github.com/buehler/node-passport-zitadel).## Goals
This is the "client library" for the ZITADEL API. It contains the compiled
proto files from the original ZITADEL repository and therefore helps to
access the API and manage ressources. Also, it contains helpers to
authenticate a given service account against ZITADEL.To summarize:
- Provide compiled proto clients
- Manage resources via proto clients (e.g. `OrganizationServiceClient`, `SessionServiceClient`)
- Allow authentication of a service account (fetch a token that can be sent)## Non-Goals
In contrast to the goals of this package, this package does _not_ provide
means to check for authentication of a user. There exists a multitude
of frameworks that can be used in conjunction with NodeJS. Therefore, you need
to use specific framework packages to support authentication.Known packages:
- [Passport.js](https://www.passportjs.org/): [node-passport-zitadel](https://github.com/buehler/node-passport-zitadel)
- [NextAuth / Auth.js](https://next-auth.js.org): [ZITADEL Provider](https://next-auth.js.org/providers/zitadel)
- [NestJS](https://nestjs.com/): [NestJS OIDC](https://github.com/5-stones/nest-oidc)### Development
To enhance this library or to fix a bug, you need to do the following:
1. Clone the repository
2. Install the dependencies with `npm install`
3. Install the submodules with `git submodule update --init --recursive`
4. Generate the gRPC types with `npm run build:grpc`Then you can start developing with `npm run dev`. The production build can be
made with `npm run build` and the tests run with `npm test`.