Node.js
Configure the application
You will store your API key and secret (which you can find in the Developer Dashboard) and the name of your organization in a configuration file.
Create a file called .env in the root of your application directory and enter the following information, replacing YOUR_API_KEY and YOUR_API_SECRET with your own key and secret:
VONAGE_API_KEY=YOUR_API_KEY
VONAGE_API_SECRET=YOUR_API_SECRET
VONAGE_BRAND_NAME=AcmeInc
Step-up Authentication
Add an extra layer of security when users perform sensitive tasks
Steps
1
Introduction2
Create the Node.js application3
Initialize your dependencies4
Configure the application5
Define the routes6
Create the UI7
Display the home page8
Send the verification request9
Check the verification code10
Try it out!11
What's next?