Marko ================ Marko is an extensible, streaming, asynchronous, [high performance](https://github.com/raptorjs/templating-benchmarks), _HTML-based_ templating language that can be used in Node.js or in the browser. Marko was founded on the philosophy that an HTML-based templating language is more natural and intuitive for generating HTML. Because the Marko compiler understands the structure of the HTML document, the directives in template files are less obtrusive and more powerful. In addition, Marko allows developers to introduce custom tags and custom attributes to extend the HTML grammar (much like [Web Components](http://www.html5rocks.com/en/tutorials/webcomponents/customelements/)—only you can use it now). __[Try Marko Online!](http://raptorjs.org/marko/try-online/)__ ![Marko Syntax](syntax.png) Syntax highlighting available for [Atom](https://atom.io/) by installing the [language-marko](https://atom.io/packages/language-marko) package. ![eBay Open Source](https://raw.githubusercontent.com/raptorjs/optimizer/master/images/ebay.png) # Table of Contents - [Another Templating Language?](#another-templating-language) - [Design Philosophy](#design-philosophy) - [Sample Code](#sample-code) - [Installation](#installation) - [Usage](#usage) - [Template Rendering](#template-rendering) - [Callback API](#callback-api) - [Streaming API](#streaming-api) - [Synchronous API](#synchronous-api) - [Asynchronous Rendering API](#asynchronous-rendering-api) - [Browser-side Rendering](#browser-side-rendering) - [Using the RaptorJS Optimizer](#using-the-raptorjs-optimizer) - [Using Browserify](#using-browserify) - [Template Compilation](#template-compilation) - [Sample Compiled Template](#sample-compiled-template) - [Language Guide](#language-guide) - [Template Directives Overview](#template-directives-overview) - [Text Replacement](#text-replacement) - [Expressions](#expressions) - [Includes](#includes) - [Variables](#variables) - [Conditionals](#conditionals) - [if...else-if...else](#ifelse-ifelse) - [Shorthand conditionals](#shorthand-conditionals) - [Looping](#looping) - [for](#for) - [Loop Status Variable](#loop-status-variable) - [Loop Separator](#loop-separator) - [Range Looping](#range-looping) - [Property Looping](#property-looping) - [Macros](#macros) - [def](#def) - [invoke](#invoke) - [Structure Manipulation](#structure-manipulation) - [attrs](#attrs) - [Comments](#comments) - [Helpers](#helpers) - [Custom Tags and Attributes](#custom-tags-and-attributes) - [Async Taglib](#async-taglib) - [Layout Taglib](#layout-taglib) - [Custom Taglibs](#custom-taglibs) - [Tag Renderer](#tag-renderer) - [marko-taglib.json](#marko-taglibjson) - [Sample Taglib](#sample-taglib) - [Defining Tags](#defining-tags) - [Defining Attributes](#defining-attributes) - [Scanning for Tags](#scanning-for-tags) - [Nested Tags](#nested-tags) - [Taglib Discovery](#taglib-discovery) - [FAQ](#faq) - [Discuss](#discuss) - [Contributors](#contributors) - [Contribute](#contribute) - [License](#license) # Another Templating Language? Most front-end developers are familiar with, and comfortable with, templating languages such as [Handlebars](https://github.com/wycats/handlebars.js), [Dust](https://github.com/linkedin/dustjs) or [Mustache](http://mustache.github.io/) so why was Marko introduced? What makes Marko different is that it is an HTML-based templating language that does not rely on a custom language grammar. Any HTML file is a valid Marko template and vice-versa, and the Marko compiler uses an [off-the-shelf HTML parser](https://github.com/fb55/htmlparser2). Because Marko understands the HTML structure of the templates, it can do more powerful things that would not be possible in a text-based templating languages such as Handlerbars, Dust or Mustache. Marko allows developers to _extend the HTML language_ by introducing custom HTML elements and attributes. On top of that, utilizing the HTML structure for applying templating directives makes templates more readable and allows data templates to more closely resemble the final HTML structure. Let's compare Marko with Handlebars (a text-based templating language): __Handlebars:__ ```html Hello {{name}}! {{#if colors}} {{else}}
No colors!
{{/if}} ``` __Marko:__ ```html Hello ${data.name}!
No colors!
``` A few things to note for the Marko template: * Less lines of code * Less lines are "touched" to make the template dynamic * Only opening tags are modified for conditionals and looping Beyond Marko being an HTML-based templating language, it was also designed with extreme performance and extensibility in mind. The Marko compiler gives developers full control over how templates are compiled to JavaScript and the runtime was designed to be as efficient as possible. Marko fully embraces the JavaScript language for better performance and flexibility (e.g. favoring JavaScript expressions over a custom expression language). Finally, another distinguishing feature of Marko is that it supports _asynchronous template rendering_. This powerful feature allows portions of the template to be rendered asynchronously. Instead of waiting for all data to come back from remote services before beginning to render the template, you can now immediately start rendering the template and the portions of the template that depend on asynchronous data will render as soon as the asynchronous data becomes available. The Marko rendering engine ensures that the final HTML will be streamed out in the correct order. # Design Philosophy * __Readable:__ Templates should be as close to the output HTML as possible to keep templates readable. Cryptic syntax and symbols should be avoided. * __Simple:__ The number of new concepts should be minimized and complexity should be avoided. * __Extensible:__ The template engine should be easily extensible at both compile-time and runtime. * __High Performance:__ Runtime and compiled output should be optimized for low CPU and memory usage and have a small footprint. All expressions should be native JavaScript to avoid runtime interpretation. * __Not Restrictive:__ Whether or not to go less logic or more logic is up to the developer. * __Asynchronous and Streaming Output:__ It should be possible to render HTML out-of-order, but the output HTML should be streamed out in the correct order. This minimizes idle time and reduces the time to first byte. * __Intuitive:__ The templating engine should introduce as few surprises as possible. * __Browser and Server Compatibility:__ Templates should compile down to JavaScript that can be executed on both the server and the client. * __Debuggable:__ Compiled JavaScript should be debuggable and readable. * __Compile-Time Checks:__ Syntax, custom tags and custom attributes should be validated at compile-time. * __Tools Support:__ Tools should be enabled to offer auto-completion and validation for improved productivity and safety. * __Modular:__ Runtime and compiled templates should be based on CommonJS modules for improved dependency management. Template dependencies (such as custom tags) should be resolved based on a template's file system path instead of relying on a shared registry. # Sample Code A basic template with text replacement, looping and conditionals is shown below: ```html Hello ${data.name}!
No colors!
``` To render the template you will need to install the `marko` module using [npm](https://www.npmjs.org/): ```bash npm install marko --save ``` The template can then be rendered as shown in the following sample code: ```javascript var templatePath = require.resolve('./hello.marko'); var template = require('marko').load(templatePath); template.render({ name: 'World', colors: ["red", "green", "blue"] }, function(err, output) { console.log(output); }); ``` The output of running the above program will be the following (formatted for readability): ```html Hello World! ``` For comparison, given the following data consisting of an empty array of colors: ```javascript { name: 'World', colors: [] } ``` The output would be the following: ```html Hello World!
No colors!
``` The streaming API can be used to stream the output to an HTTP response stream or any other writable stream. For example, with Express: ```javascript var template = require('marko').load(require.resolve('./template.marko')); app.get('/profile', function(req, res) { template.stream({ name: 'Frank' }) .pipe(res); }); ``` Marko also supports custom tags so you can easily extend the HTML grammar to support things like the following: ```html Welcome to Marko! Content for Home Content for Profile Content for Messages ``` The above template is a very simple way to generate the much more complicated HTML output shown below: ```html
Content for Home
Content for Profile
Content for Messages
``` The custom tags encapsulate rendering logic and help avoid repeating the same HTML (and potentially the same mistakes). # Installation To install the `marko` module into your project you should use the following command: ```bash npm install marko --save ``` To install the optional `markoc` command line interface to compile templates you can use the following command: ```bash npm install marko --global ``` # Usage ## Template Rendering ### Callback API ```javascript var template = require('marko').load('template.marko'); template.render({ name: 'Frank', count: 30 }, function(err, output) { if (err) { console.error('Rendering failed'); return; } console.log('Output HTML: ' + output); }); ``` ### Streaming API ```javascript var template = require('marko').load('template.marko'); var out = require('fs').createWriteStream('index.html', 'utf8'); // Render the template to 'index.html' template.stream({ name: 'Frank', count: 30 }) .pipe(out); ``` Alternatively, you can render directly to an existing stream to avoid creating an intermediate stream: ```javascript var template = require('marko').load('template.marko'); var out = require('fs').createWriteStream('index.html', 'utf8'); // Render the template to 'index.html' template.render({ name: 'Frank', count: 30 }, out); ``` _NOTE:_ This will end the target output stream. ### Synchronous API If you know that your template rendering requires no asynchronous rendering then you can use the synchronous API to render a template to a String: ```javascript var template = require('marko').load('template.marko'); var output = template.renderSync({ name: 'Frank', count: 30 }); console.log('Output HTML: ' + output); ``` ### Asynchronous Rendering API ```javascript var fs = require('fs'); var marko = require('marko'); var template = marko.load('template.marko'); var out = marko.createWriter(fs.createWriteStream('index.html', 'utf8')); // Render the first chunk asynchronously (after 1s delay): var asyncOut = out.beginAsync(); setTimeout(function() { asyncOut.write('BEGIN '); asyncOut.end(); }, 1000); // Render the template to the original writer: template.render({ name: 'World' }, out); // Write the last chunk synchronously: out.write(' END'); // End the rendering out out.end(); ``` Despite rendering the first chunk asynchronously, the above program will stream out the output in the correct order to `index.html`: ```html BEGIN Hello World! END ``` For more details, please see the documentation for the [async-writer](https://github.com/raptorjs/async-writer) module. ## Browser-side Rendering Given the following module code that will be used to render a template on the client-side: _run.js_: ```javascript var templatePath = require.resolve('./hello.marko'); var template = require('marko').load(templatePath); templatePath.render({ name: 'John' }, function(err, output) { document.body.innerHTML = output; }); ``` You can then bundle up the above program for running in the browser using either [optimizer](https://github.com/raptorjs/optimizer) (recommended) or [browserify](https://github.com/substack/node-browserify). ### Using the RaptorJS Optimizer The `optimizer` CLI can be used to generate resource bundles that includes all application modules and all referenced Marko template files using a command similar to the following: ```bash # First install the optimizer and the optimizer-marko plugin npm install optimizer --global npm install optimizer-marko optimizer --main run.js --name my-page --plugins optimizer-marko ``` This will produce a JSON file named `build/my-page.html.json` that contains the HTML markup that should be used to include the required JavaScript and CSS resources that resulted from the page optimization. Alternatively, you can inject the HTML markup into a static HTML file using the following command: ```bash optimizer --main run.js --name my-page --plugins optimizer-marko --inject-into my-page.html ``` ### Using Browserify The `markoify` transform for browserify must be enabled in order to automatically compile and include referenced Marko template files. ```bash # Install the markoify plugin from npm: npm install markoify --save # Build the browser bundle: browserify -t markoify run.js > browser.js ``` ## Template Compilation The Marko compiler produces a Node.js-compatible, CommonJS module as output. This output format has the advantage that compiled template modules can benefit from a context-aware module loader and templates can easily be transported to work in the browser using the [RaptorJS Optimizer](https://github.com/raptorjs/optimizer) or [Browserify](https://github.com/substack/node-browserify). The `marko` module will automatically compile templates loaded by your application on the server, but you can also choose to precompile all templates. This can be helpful as a build or test step to catch errors early. You can either use the command line interface or the JavaScript API to compile a Marko template file. To use the CLI you must first install the `marko` module globally using the following command: ```bash npm install marko --global ``` You can then compile single templates using the following command: ```bash markoc hello.marko ``` This will produce a file named `hello.marko.js` next to the original file. You can also recursively compile all templates in the current directory (the `node_modules` and `.*` directories will be ignored by default) ```bash markoc . ``` You can also specify multiple directories or files ```bash markoc foo/ bar/ template.marko ``` To delete all of the generated `*.marko.js` files you can add the `--clean` argument. For example: ```bash markoc . --clean ``` Alternatively, you can use the JavaScript API to compile a module as shown in the following sample code: ```javascript require('marko/compiler').compileFile(path, function(err, src) { // Do something with the compiled output }); ``` ### Sample Compiled Template ```javascript module.exports = function create(__helpers) { var empty = __helpers.e, notEmpty = __helpers.ne, escapeXml = __helpers.x, forEach = __helpers.f, escapeXmlAttr = __helpers.xa; return function render(data, out) { out.w('Hello ' + escapeXml(data.name) + '! '); if (notEmpty(data.colors)) { out.w(''); } else { out.w('
No colors!
'); } }; } ``` The compiled output is designed to be both extremely readable and minifiable. The minified code is shown below: ```javascript module.exports=function(a){var d=a.ne,c=a.x,e=a.f,f=a.xa;return function(a,b){b.w("Hello "+c(a.name)+"! ");d(a.colors)?(b.w("")):b.w("
No colors!
")}}; ``` _File size: 190 bytes gzipped (251 bytes uncompressed)_ # Language Guide ## Template Directives Overview Almost all of the Marko templating directives can be used as either an attribute or as an element. For example: _Applying directives using attributes:_ ```html
No colors!
``` _Applying directives using elements:_ ```html
No colors!
``` The disadvantage of using elements to control structural logic is that they change the nesting of the elements which can impact readability. For this reason it is often more suitable to apply directives as attributes. ## Text Replacement Dynamic text is supported using either `$` or `${}`. Examples: ```html Hello $data.name! Hello ${data.name}! Hello ${data.name.toUpperCase()}! ``` By default, all special HTML characters will be escaped in dynamic text to prevent Cross-site Scripting (XSS) Attacks. To disable HTML escaping, you can use `$!` as shown in the following sample code: ```html Hello $!{data.name}! ``` If necessary, you can escape `$` using a forward slash to have it be treated as text instead of a placeholder token: ```html Test: \${hello} ``` ## Expressions Wherever expressions are allowed, they are treated as JavaScript expressions and copied out to the compiled template verbatim. However, you can choose to use alternate versions of the following JavaScript operators: JavaScript Operator | Marko Equivalent ------------------- | ----------------- `&&` | `and` || | `or` `===` | `eq` `!==` | `ne` `<` | `lt` `>` | `gt` `<=` | `le` `>=` | `ge` For example, both of the following are valid and equivalent: ```html
Show More
``` ```html
Show More
``` ## Includes Other Marko files can be included using the `` tag and a relative path. For example: ```html ``` ## Variables Input data passed to a template is made available using a special `data` variable. It's possible to declare your own variables as shown in the following sample code: ```html ``` The `` directive can be used to create scoped variables as shown in the following sample code: ```html Hello $nameUpper! Hello $nameLower! ``` ## Conditionals ### if...else-if...else Any element or fragment of HTML can be made conditional using the `if`, `else-if` or `else` directive. _Applied as attributes:_ ```html
Hello World
A
B
C
Something else
``` _Applied as elements:_ ```html
Hello World
A
B
C
Something else
``` ### Shorthand conditionals Shorthand conditionals allow for conditional values inside attributes or wherever expressions are allowed. Shorthand conditionals are of the following form: `{?;[;]}` For example: ```html
Hello
``` With a value of `true` for `active`, the output would be the following: ```html
Hello
``` With a value of `false` for `active`, the output would be the following: ```html
Hello
``` _NOTE: If the expression inside an attribute evaluates to `null` or an empty string then the attribute is not included in the output._ As shown in the previous example, the "else" block for shorthand conditionals is optional. The usage of an else block is shown below: ```html
Hello
``` With a value of `false` for `active`, the output would be the following: ```html
Hello
``` ## Looping ### for Any element can be repeated for every item in an array using the `for` directive. The directive can be applied as an element or as an attribute. _Applied as an attribute:_ ```html
  • ${item}
``` _Applied as an element:_ ```html
  • ${item}
``` Given the following value for items: ```javascript ["red", "green", "blue"] ``` The output would be the following: ```html
  • red
  • green
  • blue
``` #### Loop Status Variable The `for` directive also supports a loop status variable in case you need to know the current loop index. For example: ```html
  • ${loop.getIndex()+1}) $color - FIRST - LAST
``` #### Loop Separator ```html $color
$color
``` #### Range Looping A range can be provided in the following format; ` from to [ step ]`. The `from`, `to` and `step` values must be numerical expressions. If not specified, step defaults to 1. ```html
  • $i
``` ```html
  • $i
``` ```html
  • ${myArray[i]}
``` #### Property Looping ```html
  • $name: $value
``` ## Macros Parameterized macros allow for reusable fragments within an HTML template. A macro can be defined using the `` directive. ### def The `` directive can be used to define a reusable function within a template. ```html Hello $name! You have $count new messages. ``` The above macro can then be invoked as part of any expression. Alternatively, the [``](#invoke) directive can be used invoke a macro function using named attributes. The following sample template shows how to use macro functions inside expressions: ```html Hello $name! You have $count new messages.

${greeting("John", 10)}

${greeting("Frank", 20)}

``` ### invoke The `` directive can be used to invoke a function defined using the `` directive or a function that is part of the input data to a template. The `` directive allows arguments to be passed using element attributes, but that format is only supported for functions that were previously defined using the `` directive. ```html Hello ${name}! You have ${count} new messages. ``` The output for the above template would be the following: ```html

Hello John! You have 10 new messages.

Hello Frank! You have 20 new messages.

``` _NOTE:_ By default, the arguments will be of type "string" when using `.` However, argument attributes support JavaScript expressions which allow for other types of arguments. Example: ```html count="10" count="${10}" ``` ## Structure Manipulation ### attrs The `attrs` attribute allows attributes to be dynamically added to an element at runtime. The value of the attrs attribute should be an expression that resolves to an object with properties that correspond to the dynamic attributes. For example: ```html
Hello World!
``` Given the following value for the `myAttrs` variable: ```javascript {style: "background-color: #FF0000;", "class": "my-div"} ``` The output would then be the following: ```html
Hello World!
``` ## Comments Standard HTML comments can be used to add comments to your template. The HTML comments will not show up in the rendered HTML. Example comments: ```html

Hello

``` If you would like for your HTML comment to show up in the final output then you can use the custom `html-comment` tag: ```html This is a comment that *will* be rendered

Hello

``` Output: ```html

Hello

``` ## Helpers Since Marko template files compile into CommonJS modules, any Node.js module can be "imported" into a template for use as a helper module. For example, given the following helper module: _src/util.js_: ```javascript exports.reverse = function(str) { var out = ""; for (var i=str.length-1; i>=0; i--) { out += str.charAt(i); } return out; }; ``` The above module can then be imported into a template as shown in the following sample template: _src/template.marko_: ```html
${util.reverse('reverse test')}
``` ## Custom Tags and Attributes Marko supports extending the language with custom tags and attributes. A custom tag or a custom attribute __must have at least one dash__ to indicate that is not part of the standard HTML grammar. Below illustrates how to use a simple custom tag: ```html
``` The output of the above template might be the following: ```html
Hello World!
``` For information on how to use and create taglibs, please see the [Custom Taglibs](#custom-taglibs) section below. ## Async Taglib The async taglib allows portions of your template to be rendere asynchronously. An asynchronous fragment can be bound to a function that accepts an "args" objects and callback argument. When the data provider function completes and invokes the callback with the resulting data, the body of the async fragment is then rendered with the asynchronous data assigned to the specified variable. Asynchronous fragments allow parts of your page to render out-of-order while still providing the final HTML in the correct order. Example: ```javascript template.render({ userProfileDataProvider: function(arg, callback) { var userId = arg.userId; userProfileService.getUserProfile(userId, callback); } }, ...); ``` ```html
  • First name: ${userProfile.firstName}
  • Last name: ${userProfile.lastName}
  • Email address: ${userProfile.email}
``` For more details, please see [https://github.com/raptorjs/marko-async](https://github.com/raptorjs/marko-async). ## Layout Taglib Marko provides a `layout` taglib to support separating out layout from content. The usage of of the `layout` taglib is shown in the sample code below: _default-layout.marko:_ ```html <layout-placeholder name="title"/>

Default Footer
``` _Usage of `default-layout.marko`:_ ```html My Page BODY CONTENT ``` For more details, please see [https://github.com/raptorjs/marko-layout](https://github.com/raptorjs/marko-layout). # Custom Taglibs ## Tag Renderer Every tag should be mapped to a "renderer". A renderer is just a function that takes two arguments (`data` and `out`). The `data` argument is an arbitrary object that contains the data for the renderer. The `out` argument is an [asynchronous rendering out](https://github.com/raptorjs/async-writer) that wraps an output stream. Output can be produced using `out.write(someString)` There is no class hierarchy or tie-ins to Marko when implementing a tag renderer. A simple tag renderer is shown below: ```javascript module.exports = function(data, out) { out.write('Hello ' + data.name + '!'); } ``` If, and only if, a tag has nested content, then a special `invokeBody` method will be added to the `data` object. If a renderer wants to render the nested body content then it must call the `invokeBody` method. For example: ```javascript module.exports = function(data, out) { out.write('BEFORE BODY'); if (data.invokeBody) { data.invokeBody(); } out.write('AFTER BODY'); } ``` A tag renderer should be mapped to a custom tag by creating a `marko-taglib.json` as shown in the next few sections. ## marko-taglib.json ### Sample Taglib ```json { "tags": { "my-hello": { "renderer": "./hello-renderer", "attributes": { "name": "string" } } } } ``` ### Defining Tags Tags can be defined by adding a `"tags"` property to your `marko-taglib.json`: ```json { "tags": { "my-hello": { "renderer": "./hello-renderer", "attributes": { "name": "string" } }, "my-foo": { "renderer": "./foo-renderer", "attributes": { "*": "string" } } } } ``` Every tag should be associated with a renderer. When a custom tag is used in a template, the renderer will be invoked at render time to produce the HTML/output. #### Defining Attributes If you provide attributes then the Marko compiler will do validation to make sure only the supported attributes are provided. A wildcard attribute (`"*"`) allows any attribute to be passed in. Below are sample attribute definitions: _Multiple attributes:_ ```javascript "attributes": { "message": "string", // String "my-data": "expression", // JavaScript expression "*": "string" // Everything else will be added to a special "*" property } ``` ### Scanning for Tags Marko supports a directory scanner to make it easier to maintain a taglib by introducing a few conventions: * The name of the tag directory will be the name of the tag * One tag per directory * All tag directories should be direct children of a parent directory * Every tag directory must contain a `renderer.js` that is used as the tag renderer or, alternatively, a `template.marko` * Each tag directory may contain a `marko-tag.json` file or the tag definition can be embedded into `renderer.js` With this approach, `marko-taglib.json` will be much simpler: ```json { "tags-dir": "./components" } ``` Given the following directory structure: * __components/__ * __my-hello/__ * renderer.js * __my-foo/__ * template.marko * __my-bar/__ * renderer.js * marko-tag.json * marko-taglib.json The following three tags will be exported: * `` * `` * `` Directory scanning only supports one tag per directory and it will only look at directories one level deep. The tag definition can be embedded into the `renderer.js` file or it can be put into a separate `marko-tag.json`. For example: _In `renderer.js`:_ ```javascript exports.tag = { "attributes": { "name": "string" } } ``` _In `marko-tag.json`:_ ```javascript { "attributes": { "name": "string" } } ``` _NOTE: It is not necessary to declare the `renderer` since the scanner will automatically use `renderer.js` as the renderer._ ### Nested Tags It is often necessary for tags to have a parent/child or ancestor/descendent relationship. For example: ```html ``` Marko supports this by leveraging JavaScript closures in the compiled output. A tag can introduce scoped variables that are available to nested tags. This is shown in the sample `marko-taglib.json` below: ```json { "tags": { "ui-tabs": { "renderer": "./tabs-tag", "var": "tabs" }, "ui-tab": { "renderer": "./tab-tag", "import-var": { "tabs": "tabs" }, "attributes": { "title": "string" } } } } ``` In the above example, the `` tag will introduce a scoped variable named `tabs` that is then automatically imported by the nested `` tags. When the nested `` tags render they can use the scoped variable to communicate with the renderer for the `` tag. The complete code for this example is shown below: _components/tabs/renderer.js:_ ```javascript var templatePath = require.resolve('./template.marko'); var template = require('marko').load(templatePath); module.exports = function render(data, out) { var nestedTabs = []; // Invoke the body function to discover nested tags data.invokeBody({ // Invoke the body with the scoped "tabs" variable addTab: function(tab) { tab.id = tab.id || ("tab" + tabs.length); nestedTabs.push(tab); } }); // Now render the markup for the tabs: template.render({ tabs: nestedTabs }, out); }; ``` _components/tab/renderer.js:_ ```javascript module.exports = function render(data, out) { // Register with parent but don't render anything data.tabs.addTab(data); }; ``` _components/tabs/template.marko:_ ```html ``` ## Taglib Discovery Given a template file, the `marko` module will automatically discover all taglibs by searching relative to the template file. The taglib discoverer will search up and also look into `node_modules` to discover applicable taglibs. As an example, given a template at path `/my-project/src/pages/login/template.marko`, the search path will be the following: 1. `/my-project/src/pages/login/marko-taglib.json` 2. `/my-project/src/pages/login/node_modules/*/marko-taglib.json` 3. `/my-project/src/pages/marko-taglib.json` 4. `/my-project/src/pages/node_modules/*/marko-taglib.json` 5. `/my-project/src/marko-taglib.json` 6. `/my-project/src/node_modules/*/marko-taglib.json` 7. `/my-project/marko-taglib.json` 8. `/my-project/node_modules/*/marko-taglib.json` # FAQ __Question:__ _Is Marko ready for production use?_ __Answer__: Yes, Marko has been battle-tested at [eBay](http://www.ebay.com/) and other companies for well over a year and has been designed with high performance, scalability, security and stability in mind.
__Question:__ _Can templates be compiled on the client?_ __Answer__: Possibly, but it is not recommended and it will likely not work in older browsers. The compiler is optimized to produce small, high performance compiled templates, but the compiler itself is not small and it comes bundled with some heavyweight modules such as a [JavaScript HTML parser](https://github.com/fb55/htmlparser2). In short, always compile your templates on the server. The [RaptorJS Optimizer](https://github.com/raptorjs/optimizer) is recommended for including compiled templates as part of a web page.
__Question:__ _Which web browsers are supported?_ __Answer__: The runtime for template rendering is supported in all web browsers. If you find an issue please report a bug.
__Question:__ _How can Marko be used with Express?_ __Answer__: The recommended way to use Marko with Express is to bypass the Express view engine and instead have Marko render directly to the response stream as shown in the following code: ```javascript var template = require('marko').load(require.resolve('./template.marko')); app.get('/profile', function(req, res) { template .render({ name: 'Frank' }, res); }); ``` With this approach, you can benefit from streaming and there is no middleman (less complexity). Alternatively, you can use the streaming API to produce an intermediate stream that can then be piped to the response stream as shown below: ```javascript var template = require('view-engine').load(require.resolve('./template.marko')); app.get('/profile', function(req, res) { template.stream({ name: 'Frank' }) .pipe(res); }); ```
__Question:__ _What is the recommended directory structure for templates and "partials"_ __Answer__: Your templates should be organized just like all other JavaScript modules. You should put your templates right next to the code that refers to them. That is, do not create a separate "templates" directory. For a sample Express app that uses Marko, please see [marko-express](https://github.com/raptorjs/raptor-samples/tree/master/marko-express).
__Question:__ _How is Marko related to [RaptorJS](http://raptorjs.org)?_ __Answer__: Marko is one of the modules that is part of the RaptorJS toolkit. It used to be a submodule, but now it has been split out into its own top-level Node.js module (for history, please see the [RaptorJS 3 Plan](https://github.com/raptorjs/raptorjs/wiki/RaptorJS-3-Plan) page). # Further Reading * [Marko versus Dust](http://psteeleidem.com/marko-versus-dust/) * [The JavaScript Templating Landscape](http://psteeleidem.com/the-javascript-templating-landscape/) # Discuss Please post questions or comments on the [RaptorJS Google Groups Discussion Forum](http://groups.google.com/group/raptorjs). # Contributors * [Patrick Steele-Idem](https://github.com/patrick-steele-idem) (Twitter: [@psteeleidem](http://twitter.com/psteeleidem)) * [Phillip Gates-Idem](https://github.com/philidem/) (Twitter: [@philidem](https://twitter.com/philidem)) # Contribute Pull Requests welcome. Please submit Github issues for any feature enhancements, bugs or documentation problems. # License Apache License v2.0