An image processing API that resizes and saves images to user specifications when visiting a URL.
To install the dependencies for this project, run the following command:
npm install
After installing the dependencies, run the follwing command to build typescript into javascript and save them in build folder:
npm run build
Start the Server:
npm start
This command will run the server on port 3000. The home page will be available through http://localhost:3000

npm run lint
npm run test
This project has two endpoint.
General: Views all images without chanding their sizes.
HTTP method: GET.
http://localhost:3000/
General: Changes the size of the images depending on the input.
http://localhost:3000/resize?w=500&h=400
When accessing an endpoint other than the discussed ones.

Prints info about the endpoints accessed, for development.

The website can deal with these types of errors:
- 404 – Page not found.
- No images to resize.
- No Parameter provided to resize.



