Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
requirejs-dot
Advanced tools
This plugins loads dot-templates with require-text during development, and has the capabilities to build dependency free optimized versions with r.js
This plugins loads dot-templates with require-text during development, and has the capabilities to build dependency free optimized versions with r.js
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);
});
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'
}
});
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
}
}
});
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']
.dot
-files during development (Or whatever extension you choose).Figure out more ways to test
(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.
FAQs
This plugins loads dot-templates with require-text during development, and has the capabilities to build dependency free optimized versions with r.js
We found that requirejs-dot demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.