In this quickstart, you'll create a microservice to demonstrate Dapr's bindings API to work with external systems as inputs and outputs. The service listens to input binding events from a system CRON and then outputs the contents of local data to a PostgreSql output binding.
Visit this link for more information about Dapr and Bindings.
Note: This example leverages the Dapr SDK. If you are looking for the example using HTTP REST only click here.
This quickstart includes one service:
- Javascript/Node.js service
bindings
- Open a new terminal, change directories to
../../db, and run the container with Docker Compose:
cd ../../db
docker compose up -d- Open a new terminal window, change directories to
./batchin the quickstart directory and run:
cd ./batch
npm install
cd ..- Run the Javascript service app with Dapr:
dapr run -f .