JSPM

task-registry-template-engine-lodash

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q21039F
  • License MIT

The lodash template engine.

Package Exports

  • task-registry-template-engine-lodash

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (task-registry-template-engine-lodash) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

task-registry-template-engine-lodash npm

Build Status Code Climate Test Coverage downloads license

The lodash template engine.

Usage

var TemplateEngine  = require('task-registry-template-engine')
//register the lodash template engine
require('task-registry-template-engine-lodash')

var result = templateEngine.executeSync({
  template: 'hello ${user}!'
  , data: {user: 'Mikey'}
  , engine: 'Lodash' //optional, defaults to the first registered template engine.
}) // the result is 'hello Mikey!'

var lodashEngine = TemplateEngine 'Lodash'
result = lodashEngine.executeSync({
  template: 'hello ${user}!'
  , data: {user: 'Mikey'}
  , write: true //write the compiled template string to engine for later used.
})  // the result is 'hello Mikey!'

result = lodashEngine.executeSync({data: {user: 'Jacky'})
// the result is 'hello Jacky!'

API

templateEngine.executeSync(aOptions)/templateEngine.execute(aOptions, done)

  • arguments
    • aOptions (Object):
      • template (String): the template string
      • write (Boolean): write the template function(compiled from the template string) to the template engine. default to false.
      • data (Object): the data properties to replace.
      • escape (RegExp): # The HTML "escape" delimiter.
      • evaluate (RegExp): # The "evaluate" delimiter.
      • imports (Object): # An object to import into the template as free variables.
      • interpolate (RegExp): # The "interpolate" delimiter.
      • sourceURL (String): # The sourceURL of the template’s compiled source.
      • variable (String): # The data object variable name.
    • done Function(error, result): the result callback function for async execute.
  • returns (String): the rendered result string.

TODO

License

MIT