Your First Template
Last updated
Last updated
Follow the installation instructions, then require or import Squirrelly. In this example, we'll require Squirrelly as the variable Sqrl
.
var Sqrl = require("squirrelly")
//Or you could: import * as Sqrl from "squirrelly"
//Or, if you're in the browser, Sqrl is already global
var myTemplate = `
This is a template
My favorite template engine is: {{fav}}
My favorite kind of cake is: {{cake}}
`
var templateResult = Sqrl.Render(myTemplate, {
fav: "Squirrelly", cake: "Chocolate"
})
console.log(templateResult)
//This is a template
//My favorite template engine is: Squirrelly
//My favorite kind of cake is: Chocolate
Try rendering it with other data: it still works!