Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahmedanwar1/image_processing_api_udacity
Image processing API built using Typescript, Node JS, Express & Jasmine as a testing framework
https://github.com/ahmedanwar1/image_processing_api_udacity
express jasmine nodejs typescript udacity udacity-nanodegree
Last synced: 6 days ago
JSON representation
Image processing API built using Typescript, Node JS, Express & Jasmine as a testing framework
- Host: GitHub
- URL: https://github.com/ahmedanwar1/image_processing_api_udacity
- Owner: ahmedanwar1
- Created: 2023-01-18T22:38:07.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-18T22:43:25.000Z (almost 2 years ago)
- Last Synced: 2024-10-16T13:05:08.887Z (20 days ago)
- Topics: express, jasmine, nodejs, typescript, udacity, udacity-nanodegree
- Language: TypeScript
- Homepage:
- Size: 10.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# first install dependences
```
npm install
```# script
```
npm run start: to start the server. "nodemon ./src/index.ts",
npm run build: to compile TS to JS. "npx tsc",
npm run test: to compile and run tests. "npm run build && npm run jasmine",
```# endpoint
- endpoint to resize images
http://localhost:3000/api/images?fileName=fjord&height=200&width=900
- fileName: name of the image to resize
- height: height in pixels
- width: width in pixels