quickstarts/secrets_management/javascript/sdk
Elena Kolevska ae812a7bf7 js sdk update
Signed-off-by: Elena Kolevska <elena@kolevska.com>
2025-02-28 17:57:40 +00:00
..
order-processor js sdk update 2025-02-28 17:57:40 +00:00
.gitignore Added secrets management examples with the workflow (#653) 2022-04-29 14:06:00 -07:00
README.md update from components path to resources path (#781) 2023-02-03 10:51:02 -08:00
makefile Removed docker image prefix addition step 2022-07-25 12:28:57 -07:00

README.md

Dapr secrets management

In this quickstart, you'll create a microservice to demonstrate Dapr's secrets management API. The service fetches secret from a secret store. See Why secrets management to understand when to use this API.

Visit this link for more information about Dapr and Secrets Management.

Note: This example leverages the Dapr client SDK. If you are looking for the example using only HTTP click here.

This quickstart includes one service:

  • Node client service order-processor

This quickstart includes one service:

  • Node client service order-processor

Run Node service with Dapr

  1. Navigate to folder and install dependencies:
cd ./order-processor
npm install
  1. Run the Node service app with Dapr:
dapr run --app-id order-processor --resources-path ../../../components/ -- npm start
dapr stop --app-id order-processor