quickstarts/secrets_management/javascript/sdk
Amulya Varote b50d01d947 Removed docker image prefix addition step
Signed-off-by: Amulya Varote <amulyavarote@microsoft.com>
2022-07-25 12:28:57 -07:00
..
order-processor Update JS-SDK package from dapr-client to @dapr/dapr (#710) 2022-07-20 16:43:22 -07:00
.gitignore Added secrets management examples with the workflow (#653) 2022-04-29 14:06:00 -07:00
README.md Added secrets management examples with the workflow (#653) 2022-04-29 14:06:00 -07: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 --components-path ../../../components/ -- npm start
dapr stop --app-id order-processor