client-templates
v0.2.0
Published
roots extension that precompiles templates for use on the client side
Downloads
62
Maintainers
Readme
Roots Client Templates
Roots client templates allow templates that compile to html to be precompiled into javascript functions to be used on the client side.
Note: This project is in early development, and versioning is a little different. Read this for more details.
Installation
make sure you are in your roots project directory
npm install client-templates --save
modify your
app.coffee
file to include the extension, as suchClientTemplates = require('client-templates') module.exports = extensions: [ClientTemplates( base: "templates/", # required pattern: "*.jade", # defaults to ** out: "js/templates.js" # defaults to js/templates.js )] # everything else...
Usage
This extension uses accord for compilation and includes support for these languages. If you try to use it with an unsupported language, you will get an error and the compile will not complete.
The example provided in the installation section is the minimum required to get things going. In this case it will look for a folder called templates
at the root, and precompile any .jade
file in that folder, outputting all the templates to js/templates.js
in your public folder. Now let's look over the full range of available options.
This extension also exposes a view helper function (client_templates
) that when called will render the script into your templates automatically. Here's how it could be used in jade:
p here's my great view
!= client_templates() //- outputs <script src='js/templates.js'></script>
Options
name
This will be the name your templates are exposed as. If you are using commonjs or amd, it will be the name of the module, if neither, it will be attached to window
as this name. Default is templates
.
path
A minimatch-compatible string pointing to one or more files to be precompiled.
out
Where you want to output your templates to in your public
folder (or whatever you have set output
to in the roots settings). Default is js/templates.js
extract
If false
in addition to being precompiled, templates are compiled normally as html files. Default is true
.
concat
If true
, the precompiled templates are concatenated into a single file with helpers at the top, wrapped with a [umd] wrapper, and each template is exported on an object with they key being the name of the file (minus extension). If false, each template is exported with a umd wrapper as it's own file as expected, and the helper functions (required to render templates) are exported alone in a file with the name decided by what you pass as out
. Default is true
.
License & Contributing
- Details on the license can be found here
- Details on running tests and contributing can be found here