UNPKG

sodajs

Version:

Light weight but powerful template engine for JavaScript.

16 lines (14 loc) 298 B
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> </head> <body> <script src="../dist/soda.min.js"></script> <script> var tpl = '<div>Hello, {{name}}</div>' document.body.innerHTML = soda(tpl,{ name : 'soda' }) </script> </body> </html>