Upload images
Find a file
2026-03-06 12:37:37 -04:00
iimage feat(README|upload): improve|add TODO 2026-03-06 12:37:37 -04:00
routing initial commit 2026-03-06 12:23:27 -04:00
.gitignore initial commit 2026-03-06 12:23:27 -04:00
go.mod refactor: remove go.sum and go.mod unused libs 2026-03-06 12:30:06 -04:00
LICENSE feat(README|LICENSE) 2026-03-06 12:29:02 -04:00
main.go initial commit 2026-03-06 12:23:27 -04:00
README.md feat(README|upload): improve|add TODO 2026-03-06 12:37:37 -04:00

imload

imload (Image Uploading) is a simple image uploading server

Usage

./imload
# Port is 3469
# Custom path not supported yet

each uploaded images will go into public/

Note

Only png, jpg and gif are supported.

Route Infos
localhost:3469/upload?name POST with optional name, PNG/JPEG/GIF Data, returns created image name
localhost:3469/image/:image GET, PNG/JPEG/GIF Data, returns image data

Building

imload has no dependencies, except for Go

go build .