Exploration of Thoughts: Express Tutorial 1 : Stock Market
WealthSimulator In this project in which user can buy and sell stocks virtually. Requirements Basic Javascript Knowledge Text editor Node js https://nodejs.org/en/download/ 1. Setting up Create a Folder named "WealthSimulator" open Terminal or Powershell inside the Folder npm init -y // To Setup project npm install express Create a file server.js server.js import express to your code create instance of express Our app will send 'Welcome' text as a response to request made with '/' in browser. This will make app to listen to request at port Now we are all set to run our server Got to Terminal or power shell inside project folder npm start http://localhost:3000/ Cool Now, Our server is answering to request made by browser. 2. Yahoo Finance API npm install axios Make account on Rapid API Rapid API Subscribe to this API for free On Endpoints Tab Look for this in indices (left panel) Copy The...