quickstarts/secrets_management/javascript/sdk
Joe Bowbeer 44d7fdcd8c npm audit fixes and lock files
Signed-off-by: Joe Bowbeer <joe.bowbeer@gmail.com>
2024-07-29 00:15:18 +00:00
..
order-processor npm audit fixes and lock files 2024-07-29 00:15:18 +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