Code Monkey home page Code Monkey logo

Comments (6)

Fenny avatar Fenny commented on April 30, 2024 2

Hi @s0kil, quicktemplate needs to be compiled and therefor we didn't add this library to our Render function yet. I use this library myself for some web apps, the way I make it work with fiber is straightforward:

go get -u github.com/valyala/quicktemplate
go get -u github.com/valyala/quicktemplate/qtc

./templates/hello.qtpl

{% func Hello(name string) %}
	Hello, {%s name %}!
{% endfunc %}

Generate templates

go generate

./server.go

package main

import (
  "./templates"
  "github.com/gofiber/fiber"
)

func main() {
  app := fiber.New()

  app.Get("/", func(c *fiber.Ctx) {
    c.Set("Content-Type", "text/html")
    c.SendString(templates.Hello("Hello, World!"))
  })

  app.Listen(3000)
}

I hope this helps, if you have any further questions please don't hesitate to leave a comment!

from fiber.

Fenny avatar Fenny commented on April 30, 2024 1

@s0kil, I have no plans to document this because it's not a part of our framework.
But since there is an example in this issue, it should be no problem to find for other users.

I'm closing this issue, feel free to re-open if you have questions/suggestions!

from fiber.

welcome avatar welcome commented on April 30, 2024

Thanks for opening your first issue here! 🎉 Be sure to follow the issue template!

from fiber.

s0kil avatar s0kil commented on April 30, 2024

Thank You @Fenny . Do you plan to document this?

from fiber.

frederikhors avatar frederikhors commented on April 30, 2024

@s0kil are you still using Fiber and quicktemplate? Can I ask you how?

from fiber.

ReneWerner87 avatar ReneWerner87 commented on April 30, 2024

@s0kil #190 (comment) here is the instruction from fenny

from fiber.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.