Project Setup
What We Are Doing:
Initializing a Node.js/Express project.
Installing necessary dependencies.
Preparing the base structure for integration with the Issuer and Verifier.
Why: We need a backend server that:
Interacts with the Issuer to request credential issuance.
Interacts with the Verifier to request verification.
Serves a frontend for user input and QR code display.
Steps:
Create a new directory and initialize a Node.js project:
Install dependencies:
Project structure:
Create a basic Express server (
src/index.ts
):
Next, we will deploy an Issuer and Verifier service via the One-Click Deployment portal.
Last updated