quicktemplate VS pongo2

Compare quicktemplate vs pongo2 and see what are their differences.

quicktemplate

Fast, powerful, yet easy to use template engine for Go. Optimized for speed, zero memory allocations in hot paths. Up to 20x faster than html/template (by valyala)

pongo2

Django-syntax like template-engine for Go (by flosch)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
quicktemplate pongo2
12 12
3,003 2,779
- -
0.0 1.0
10 months ago 2 months ago
Go Go
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

quicktemplate

Posts with mentions or reviews of quicktemplate. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-10.
  • Templ: A language for writing HTML user interfaces in Go
    14 projects | news.ycombinator.com | 10 Dec 2023
    Here are a couple:

    https://github.com/julvo/htmlgo

    https://github.com/rohanthewiz/element

    I'm sure there are many more.

    The thing about these is that performance is often not as good as when using templates, especially when the templates are compiled to native code. Quicktemplate [1] is still the leader here IMO, and I don't think the OP project brings much that couldn't be done pretty easily with QT.

    [1] https://github.com/valyala/quicktemplate

  • Full stack web dev with Go.
    1 project | /r/golang | 1 Aug 2023
    From my experience you don't really need a distinct frontend framework for web development in Go. I've been able to use quicktemplate for some of my projects for rendering HTML pretty effectively. I've written about using it here.
  • What is the current ideal choice for server-side rendered web frameworks?
    13 projects | /r/golang | 8 Jun 2023
    If the question is about templating libraries, then I've seen people use other libraries than the html/template, like https://github.com/hoisie/mustache or https://github.com/valyala/quicktemplate
  • The templ templating language: 2 years later
    8 projects | /r/golang | 28 Apr 2023
    I originally started out trying to add features to quicktemplate, but didn't get any engagement, so went my own way: https://github.com/valyala/quicktemplate/issues/80
  • Go Time #266: Is htmx the way to Go?
    6 projects | /r/golang | 10 Feb 2023
    I've been using quick template with htmx and I'm really enjoying the combo. As a mostly backend developer it's a pretty intuitive approach. Now if someone could just build something to simplify working with CSS...
  • Ask HN: Slimvoice Alternative?
    13 projects | news.ycombinator.com | 31 Dec 2022
  • Using multiple repositories in your CI builds
    4 projects | dev.to | 16 Aug 2022
    Like with the previous post, we're going to use djinn-ci/imgsrv as an example of using multiple sources in a build manifest. If we look at the top of the manifest file, we will see that it requires three repositories to build. These are, the source code for djinn-ci/imgsrv itself, golang/tools, and valyala/quicktemplate, defined like so,
  • Why Hugo’s Documentation Sucks
    4 projects | news.ycombinator.com | 2 Mar 2022
    I like Hugo quite a lot, but I don't like Go's standard library templates. I wonder if it is possible to use https://github.com/valyala/quicktemplate with Hugo?
  • [HELP]XML encoding and decoding
    1 project | /r/golang | 21 Jan 2022
    For encoding, the receivers usually want very specific encoding (namespaces, nil as xsi:nil, not omitted value...) - templating with text/template or github.com/valyala/quicktemplate is easier on the long run, than fight with xml.Marshal and the other end's unspoken assumptions.
  • Templ - a new templating language for Go, with autocomplete, syntax highlighting and formatting
    6 projects | /r/golang | 19 May 2021
    The "Hello World" example is up at https://github.com/a-h/qt-lsp - it's called qt-lsp because I started down this track looking to build IDE support for quicktemplate - https://github.com/valyala/quicktemplate/issues/80 - but didn't think it was practical when I dug into the design of quicktemplate more.

pongo2

Posts with mentions or reviews of pongo2. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-04.
  • 6 🔥 Awesome Golang packages (web devs)
    6 projects | dev.to | 4 Dec 2023
  • pongo2 VS Salix - a user suggested alternative
    2 projects | 31 Oct 2023
  • Salix alternatives - pongo2 and Plush
    3 projects | 31 Oct 2023
  • What is the current ideal choice for server-side rendered web frameworks?
    13 projects | /r/golang | 8 Jun 2023
    I've used https://github.com/flosch/pongo2 since it feels more dev friendly (like almost every other framework I've used). Check out https://github.com/avelino/awesome-go#template-engines for some others.
  • FastAPI Replacement - especially with openapi
    9 projects | /r/golang | 19 Jan 2023
    Doesn’t it bother your that your templates aren’t really valid HTML? Because of the way html/template works, one isn’t really able to implement template inheritance properly. So you end up with opening and closing tags scattered around multiple files? You might want to look at Pongo2, which implements most of Django’s templating syntax (incl. inheritance) and is pretty stable: https://github.com/flosch/pongo2
  • Does Go have an equivalent to Python's Flask and Django?
    13 projects | /r/golang | 8 Dec 2022
    At least template-wise, I've developed pongo2 mimicking Django's template engine which I use myself for various projects. For the rest I usually stick with the standard library (net/http), golang-jwt, the Gorilla toolkit (note that it's been archived recently) and some software architecture patterns for middlewares, database abstraction, etc.
  • Go template libraries: A performance comparison
    2 projects | dev.to | 8 Sep 2022
    pongo2 is a community-built template engine with syntax inspired by Django-syntax. It is built by the community for Go. It is very popular today, with more than 2K stars on GitHub.
  • Build a CMS with golang?
    5 projects | /r/golang | 7 May 2022
    Django uses Jinja templating engine. Something similar is available at https://github.com/flosch/pongo2 Now you just have to pick which router you want and which ORM or not-ORM.
  • State of the Web: Static Site Generators
    21 projects | news.ycombinator.com | 30 Jan 2022
    Yes, Go templating is quite hard. There was a feature request[1] to implement the Django/Jinja2-like Pongo2 template engine[2], but got rejected because it would have been a too big change.

    [1]: https://github.com/gohugoio/hugo/issues/1359

    [2]: https://github.com/flosch/pongo2

  • Writing a Jinja-inspired template library in Python
    3 projects | news.ycombinator.com | 28 May 2021
    Yes, there is pongo2 [0] and my runner (basically a small Go software that runs the template engine) pongo2-runner [1].

    I'm not the author of the library (pongo2), but I'm using pongo2-runner to dynamically create config files out of environment variables, with custom logic. Super recommended.

    [0]: https://github.com/flosch/pongo2

    [1]: https://github.com/swisscom/pongo2-runner

What are some alternatives?

When comparing quicktemplate and pongo2 you can also consider the following projects:

Jet Template Engine for GO - Jet template engine

hero - A handy, fast and powerful go template engine.

sprig - Useful template functions for Go templates.

fasttemplate - Simple and fast template engine for Go

liquid - A Liquid template engine in Go

goview - Goview is a lightweight, minimalist and idiomatic template library based on golang html/template for building Go web application.

mustache - The mustache template language in Go

gofpdf

Jade - Jade.go - pug template engine for Go (golang)