gleam icon indicating copy to clipboard operation
gleam copied to clipboard

⭐️ A friendly language for building type-safe, scalable systems!

Results 441 gleam issues
Sort by recently updated
recently updated
newest added

You can do things like... ```gleam import gleam/bit_builder.{BitBuilder} import gleam/http/request.{Request} import gleam/http/response.{Response} pub fn router(_request: Request(BitString)) -> Response(BitBuilder) { let response = response.new(200) |> response.set_header("content-type", "text/html; charset=utf-8") let document =...

The recent addition of support for Elixir packages in Gleam 0.23 does not work on Windows. Attempting to compile a project that depends on `tzdata` gives the following: ``` PS...

bug
help wanted
area:tooling

This PR introduces a build step for the assets required to serve the documentation in order to make it usuable without an internet connection (see #1730). The resulting files can...

Currently the LSP can only provide type information when the code fully type checks. We want it all the time! To do this we will need to be able to...

help wanted
area:type-analysis
area:errors
area:tooling

How to reproduce: ``` > gleam new server > gleam add gleam_http > gleam add gleam_elli > gleam build Manually add gleam_otp = "0.4.0" line to gleam.toml ``` Real: Got...

bug
help wanted
area:tooling

We can shell out and call `elixirc`? We will need to do this last as the Elixir code may need to execute Gleam and Erlang code during compilation. How do...

help wanted
area:tooling

When distributing libraries we could/should distribute the full generated documentation, so that using hexdocs.pm is optional / no internet connection is required. > > Are there plans to ever make...

help wanted
good first issue
area:tooling

Just a suggestion: Make it possible to add a project-wide documentation preamble to be included in all generated doc files. Instead of having to add scripts and stylesheets across (possibly...

help wanted
discussion
area:documentation
area:tooling

Would be really nice to have :)

help wanted
area:language-design
area:parser