emptygif
ভাষা: বাংলা

সব ভাষা ও ফ্রেমওয়ার্ক

Wisp Gleam

Wisp-এর জন্য একটি Gleam স্নিপেট, যা /pixel.gif-এ আসা রিকোয়েস্টের উত্তরে empty GIF পাঠায়। GIF-টি স্টার্টআপে একবারই ডিকোড হয়।

Wisp Gleam

ইনস্টল
gleam add wisp mist gleam_http gleam_erlang
ফাইল
pixel.gleam
চালান
gleam run
import gleam/bit_array
import gleam/bytes_tree
import gleam/erlang/process
import gleam/http
import mist
import wisp
import wisp/wisp_mist

pub fn main() {
  wisp.configure_logger()
  let assert Ok(gif) = bit_array.base64_decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")

  let assert Ok(_) =
    wisp_mist.handler(handle_request(_, gif), wisp.random_string(64))
    |> mist.new
    |> mist.bind("0.0.0.0")
    |> mist.port(8080)
    |> mist.start

  process.sleep_forever()
}

fn handle_request(req: wisp.Request, gif: BitArray) -> wisp.Response {
  case req.method, req.path {
    http.Get, "/pixel.gif" ->
      wisp.response(200)
      |> wisp.set_header("content-type", "image/gif")
      |> wisp.set_header("cache-control", "no-store")
      |> wisp.set_body(wisp.Bytes(bytes_tree.from_bit_array(gif)))
    _, _ -> wisp.not_found()
  }
}

আমরা এই স্নিপেট চালিয়েছি এবং এটি যে বাইটগুলো ফেরত দিয়েছে তা মিলিয়ে দেখেছি।

যাচাই করুন

curl -sI http://localhost:8080/pixel.gif

অফিশিয়াল সাইট: Wisp