# 10 - Client Application
In this section we create a quick little client application that will start a transaction, and then - if necessary - poll the server for the status, until the transaction completes.
Create a new folder
myProject/util-vsc/client-app
.Copy
COURSE-FILES/2.10-application-client/app.js
into that folder.Start the app in a VSCode terminal:
cd /workspace/myProject/util-vsc/client-application
node app.js
1
2
2
In the output you can see the initial call to start the transaction, followed by polling calls to get the transaction status.
Extra Challenge
- Try changing the client to call other pipelines.
- Try starting transactions with the default transaction starting URL, shown when you start the server.