• This repository has been archived on 06/Dec/2022
  • Stars
    star
    96
  • Rank 339,008 (Top 7 %)
  • Language
    Go
  • License
    MIT License
  • Created about 7 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Go package for easily rendering JSON/XML data and HTML templates

Grender GoDoc Build Status


Deprecation notice

This package could be more focused, so it was split up into two improved packages:


Grender is a package that provides functionality for easily rendering HTML templates and JSON or XML data to a HTTP response. It is based on github.com/unrolled/render with some subtle modifications when it comes to rendering HTML templates.

  • Templates inheritance: {{/* extends "master.tmpl" */}}
  • Glob configuration: templates/*.tmpl
  • Normal templates as partials: {{ template "footer" .}}

Usage

Grender can be used with pretty much any web framework providing you can access the http.ResponseWriter from your handler. The rendering functions simply wraps Go's existing functionality for marshaling and rendering data.

  • HTML: Uses the html/template package to render HTML templates.
  • JSON: Uses the encoding/json package to marshal data into a JSON-encoded response.
  • XML: Uses the encoding/xml package to marshal data into an XML-encoded response.
  • Text: Passes the incoming string straight through to the http.ResponseWriter.
// main.go
package main

import (
    "net/http"
    "github.com/dannyvankooten/grender"  
)

func main() {
    r := grender.New(grender.Options{
        Charset: "ISO-8859-1",
        TemplatesGlob: "examples/*.tmpl",
    })
    mux := http.NewServeMux()

    // This will set the Content-Type header to "application/json; charset=ISO-8859-1".
    mux.HandleFunc("/json", func(w http.ResponseWriter, req *http.Request) {
        r.JSON(w, http.StatusOK, map[string]string{"hello": "world"})
    })

    // This will set the Content-Type header to "text/html; charset=ISO-8859-1".
    mux.HandleFunc("/html", func(w http.ResponseWriter, req *http.Request) {
        r.HTML(w, http.StatusOK, "hello.tmpl", "world")
    })

    http.ListenAndServe("127.0.0.1:3000", mux)
}

Options

Grender comes with a variety of configuration options. The defaults are listed below.

r := grender.New(grender.Options{
    Debug: false,       // If true, templates will be recompiled before each render call
    TemplatesGlob: "",  // Glob to your template files
    PartialsGlob: "",   // Glob to your patials or global templates
    Funcs: nil,         // Your template FuncMap
    Charset: "UTF-8",   // Charset to use for Content-Type header values
})

Extending another template

First, define your parent template like this.

file: master.tmpl

<html>
  {{template "content" .}}
</html>

Then, in a separate template file use a template comment on the first line to indicate that you want to extend the other template file.

file: child.tmpl

{{/* extends "master.tmpl" */}}

{{define "content"}}Hello world!{{end}}

More examples

The grender_test.go file contains additional usage examples.

License

See LICENSE file.

More Repositories

1

AltoRouter

PHP routing class. Lightweight yet flexible. Supports REST, dynamic and reversed routing.
PHP
1,205
star
2

PHP-Router

Simple PHP Router class (supports REST and reverse routing)
PHP
562
star
3

laravel-vat

EU VAT library for Laravel
PHP
121
star
4

vat

Go package for dealing with EU VAT. Does VAT number validation & rates retrieval.
Go
110
star
5

plugin-endpoints

Register URL endpoints for which only certain WordPress plugins are enabled.
PHP
84
star
6

populate.js

Populate form fields from a JSON object.
HTML
70
star
7

wp-plugin-profiler

Basic profiler for WordPress plugins. Measures response times with and without a given plugin activated.
PHP
56
star
8

extemplate

Wrapper package for Go's template/html to allow for easy file-based template inheritance.
Go
56
star
9

pepper-lang

The Pepper Programming Language
C
55
star
10

goseo

command line tool to assess readability and SEO score for any HTML document or web page
Go
54
star
11

change-username

A WordPress plugin to change usernames
PHP
52
star
12

advent-of-code

Solutions for Advent of Code puzzles. In C, C++, Python, Rust and Golang. All years.
C
33
star
13

1brc

C99 implementation of the 1 Billion Rows Challenge. 1๏ธโƒฃ๐Ÿ๐ŸŽ๏ธ Runs in ~1.7 seconds on my not-so-fast laptop CPU w/ 16GB RAM.
C
32
star
14

monkey-c-monkey-do

C implementation of the Monkey programming language. Repository moved to Sourcehut.
C
30
star
15

nederlang

Nederlandse programmeertaal ๐Ÿ‡ณ๐Ÿ‡ฑ. Geรฏnterpreteerd en met dynamische types. Met bytecode compiler en virtuele machine, in Rust.
Rust
29
star
16

wp-cdn-loader

Loads WordPress assets from a CDN instead of of local server.
PHP
22
star
17

moneybird-go

A Go client library for Moneybird
Go
18
star
18

gozer

Fast, opinionated and simple static site generator in a single static binary.
Go
16
star
19

unja

Template engine for C, inspired by Jinja and Liquid
C
13
star
20

smtp-mailer

A WordPress plugin that configures `wp_mail` to use SMTP.
PHP
13
star
21

dutchfirecalc.nl

Source code for dutchfirecalc.nl
Jupyter Notebook
10
star
22

respond

Go package for easily replying to HTTP requests with common response types.
Go
10
star
23

www.dvk.co

Site repository for my personal blog
Jupyter Notebook
4
star
24

pull-app

Simple app to track your pull-up volume
JavaScript
4
star
25

dotfiles

My dotfiles
Shell
4
star
26

www.dannyvankooten.com

My personal website, managed by Gozer.
Jupyter Notebook
3
star
27

moneybird-belastingdienst

Makkelijker kunnen zij het niet maken, wij wel.
HTML
2
star
28

top2000spotify

Maakt 'n Spotify playlist van je Top 2000 lijstje (of die van iemand anders).
JavaScript
2
star
29

stand

Stand is a periodic reminder to stand up from your desk
C
2
star
30

argos-crypto-watch

Lightweight C program for monitoring cryptocurrency price and volume changes in Argos.
C
1
star
31

pi-volume-control

Remote volume control for my Pi over HTTP
C
1
star
32

advent-of-code-2021

My solutions for Advent of Code 2021, in Python this time.
Python
1
star
33

advent-of-code-2019

My solutions for Advent of Code 2019, in Rust.
Rust
1
star
34

top-websites-compression

Researching compression applied by the top 10.000 websites
HTML
1
star
35

cnake

Snake in your terminal. In C, no dependencies.
C
1
star