Nim standard library (asynchttpserver) Nim
Nim standard library (asynchttpserver) साठी Nim स्निपेट, जो /pixel.gif वरच्या रिक्वेस्टना empty GIF ने उत्तर देतो. GIF स्टार्टअपला एकदाच डिकोड होतो.
Nim standard library (asynchttpserver) Nim
import std/[asyncdispatch, asynchttpserver, base64]
# Decoded at compile time; a const is also safe to use from the gcsafe callback.
const gif = decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")
proc handler(req: Request) {.async.} =
if req.reqMethod == HttpGet and req.url.path == "/pixel.gif":
let headers = newHttpHeaders({"Content-Type": "image/gif", "Cache-Control": "no-store"})
await req.respond(Http200, gif, headers)
else:
await req.respond(Http404, "Not Found")
let server = newAsyncHttpServer()
waitFor server.serve(Port(8080), handler)
फ्रेमवर्कच्या सध्याच्या डॉक्युमेंटेशनशी जुळवून तपासले.
तपासा
curl -sI http://localhost:8080/pixel.gif