This is a simple web app written in TypeScript as an exercise.
There are two ways of running the app:
-
Download the image from dockerhub, and run the container
-
Clone the repo from GitHub
- run
npm i
For Production:
- run
npm run build - run
npm run start
For Development:
- run
npm run dev
- run
Create a simple web based React application that takes a stock ticker symbol as input, and displays the stock’s latest quote price. The app should query your own NodeJS server using your own REST API. Within your NodeJS server, you will query a public stock API to retrieve the stock quote data.