npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

requirejs-dot

v0.1.4

Published

This plugins loads dot-templates with require-text during development, and has the capabilities to build dependency free optimized versions with r.js

Downloads

7

Readme

require.js doT plugin

This plugins loads dot-templates with require-text during development, and has the capabilities to build dependency free optimized versions with r.js

Usage

Create your template: persons.dot

<ul>
{{~ it.persons :person }}
  <li>
    <h2>{{= person.name }}</h2>
    <h3>{{= person.age }}</h3>
  </li>
{{~}}
</ul>

Use it:

define(['doT!persons'], function(tmpl) {
  var data = {
    persons: [
      { name: 'foo', age: 30 },
      { name: 'bar', age: 53 }
    ]
  };

  var html = tmpl(data);
});

Installation & Dependencies

Install with bower or npm to get them all. You can also manually download doT.js or clone this repository and get the dependencies in whatever way you see fit.

bower install requirejs-doT

or

npm install requirejs-dot

In your paths setup the mappings to the dependencies (change to fit your setup).

require.config({
  paths: {
    doTCompiler:  'components/doT/doT',
    text:         'components/requirejs-text/text',
    doT:          'components/requirejs-dot/doT'
  }
});

Config

templateSettings are passed into doT.templateSettings.

require.config({
  doT: {
    ext: '.dot', // extension of the templates, defaults to .dot
    templateSettings: {
      evaluate:    /\{\{([\s\S]+?)\}\}/g,
      interpolate: /\{\{=([\s\S]+?)\}\}/g,
      encode:      /\{\{!([\s\S]+?)\}\}/g,
      use:         /\{\{#([\s\S]+?)\}\}/g,
      define:      /\{\{##\s*([\w\.$]+)\s*(\:|=)([\s\S]+?)#\}\}/g,
      conditional: /\{\{\?(\?)?\s*([\s\S]*?)\s*\}\}/g,
      iterate:     /\{\{~\s*(?:\}\}|([\s\S]+?)\s*\:\s*([\w$]+)\s*(?:\:\s*([\w$]+))?\s*\}\})/g,
      varname: 'it',
      strip: true,
      append: true,
      selfcontained: false
    }
  }
});

Optimized

In a optimized build, the templates is defined as compiled doT function. So in optimized mode it doesn't really have dependencies at all, not even doT.

The optimized version of the persons.dot template above.

define("doT!persons",function(){return function(t){var n="<ul>",r=t.persons;if(r){var i,s=-1,o=r.length-1;while(s<o)i=r[s+=1],n+=" <li> <h2>"+i.name+"</h2> <h3>"+i.age+"</h3> </li>"}return n+="</ul>",n}})

If your application doesn't use require-text or doT somewhere else, you can go ahead and stub them from the build by using stubModules in your build.

stubModules: ['doTCompiler', 'text', 'doT']

Pitfalls

  • Remember to make sure your webserver can serve .dot-files during development (Or whatever extension you choose).
  • Optimizing isn't tested for Rhino yet...

Todo

Figure out more ways to test

License

(The MIT License)

Copyright (c) 2013 Markus Ullmark

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.