Routes are as follows:
localhost:3333/1
localhost:3333/2
localhost:3333/3
/1 & /2 are simple speech output views
/3: This application will search YouTube for a video using the Web Speech API. Here's a video demo: https://youtu.be/qyu0W-yCUAM
Make a config.js and include it inside the project root. Make sure you replace the API key with your own. If you do not have a Youtube Data API key get it here.
config.js:
module.exports = {
key: <YOUR YOUTUBE API KEY>
}
To run the application enter the following code:
npm install
npm start