Make sure serverless is installed. See installation guide.
serverless install --url https://github.com/azure/boilerplate-azurefunctions --name my-sls-app
npm install -g serverless-azure-functions followed by npm install in the service directory.
serverless deploy or sls deploy. sls is shorthand for the Serverless CLI command
serverless invoke --function httpjs --path httpQueryString.json or serverless invoke -f httpjs --path httpQueryString.json
-f is shorthand for --function
In your terminal window you should see the response from azure
{
"payload": "Hello pragna"
}Congrats you have deployed and ran your Hello World function!