Create a webpage, for drawing rectangle SVG figure. Near to the figure display the perimeter of the figure.
- The initial dimensions of the SVG figure needs to be taken from JSON file.
- The user should be able to resize the figure by mouse.
- Near to the figure display the perimeter of the figure.
- After resizing, system must update JSON file with new dimensions.
- Clone the project
https://github.com/tanvirIqbal/svg-angular-.net6.git
- Open the project in VS Code
- Open the VS Code terminal and run the command
dotnet restore
- Go to API folder by
cd API
and run the commanddotnet watch run
- Open another terminal and go to client folder by
cd client
and run the commandnpm install
and then run the commandng serve -o
. It will open the application in the browser.