Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
bemhtml-source-convert
Advanced tools
#BEMHTML to BH conversion tool
Given the impedence mismatch between Bemhtml and Bh it does not seem possible to convert every template or guarantee that the applicative semantics of the source is preserved in the result. Bemhtml is much too expressive and lenient to deliver on such promise. The ability to apply templates in a modified context powered by xjst methods apply, applyNext, applyCtx employing the result is one feature prominantly missing in Bh. Its applyBase method carries a very particular meaning that doesn't map clearly on Bemhtml machinery and as of this writing appears to be broken anyway.
bemhtml-source-convert helps you port existing Bemhtml templates to Bh. Given the above disclaimer it is best viewed as an assistant that guides your conversion effort. Until there's a more direct mapping between Bemhtml and Bh we hope that in the best case it will produce a drop in replacement for your Bemhtml template, give you enough meat to avoid writing Bh from scratch on your average template, and offer meaningful feedback when conversion fails. Be sure to eyeball and test even the happy case when conversion succeeds.
Conversion is performed in a strict mode by default, that is the compiler will accumulate any bh-incompatible features and progress till the entire template's been read and converted or exception occured. In a strict mode it will always signal an error and report incompatibilities encountered. These often point at the code that's questionable or unnecessarily convoluted even in Bemhtml world and is ripe for refactoring. Passing -S
flag to the binary or an optional second argument { strict: false }
to Stx constructor will turn the strict mode off. Many more templates can be converted this way at the expense of valuable validation the compiler performs and reliability of the result. We do NOT recommend it.
##Install
$ npm install bemhtml-source-convert
##Use
###cli
$ bemhtml2bh -h
Usage:
bemhtml2bh [OPTIONS] [ARGS]
Options:
-h, --help : Help
-v, --verbose : Verbose mode
-i INPUT, --input=INPUT : File to convert (default: stdin)
-j BEMJSON, --json=BEMJSON : Apply templates to this bemjson file
-s SETOPTIONS, --setOptions=SETOPTIONS : Set bh-template options (default: { "jsAttrName": "onclick" , "jsAttrScheme": "js" })
-o OUTPUT, --output=OUTPUT : Output to file (default: stdout)
-S, --strictOff : Ignore bh-incompatibility warnings, perform best-effort conversion
####Example
Convert this meaningless -i test/scratch.bemhtml
block node {
mod 'size' 'big', tag: 'big'
js: {param: 'p2'}
attrs: {node: 'yes'}
}
feeding it -j test/scratch.json
{
"block" : "node",
"attrs": {"a": "set"}
}
Hopefully this should produce a Bh template and HTML. You'll get a color-coded diff if generated Bh and original Bemhtml produce different HTML when applied to the same bemjson.
~/Documents/bemhtml-source-convert [master] $ bemhtml2bh -i test/scratch.bemhtml -j test/scratch.json
module.exports = function (bh) {
bh.match('node_size_big', function (ctx, json) {
ctx.tag('big', true);
});
bh.match('node', function (ctx, json) {
ctx.js(json.js !== false ? ctx.extend(json.js, { 'param': 'p2' }) : false);
ctx.attrs(ctx.extend({ 'node': 'yes' }, ctx.attrs()));
});
};
Html produced
expected actual
<div a="set" class="i-bem node" data-bem="{&node="yes" onclick="return {"node":{"param":"p2"}}" node="yes"></;}}"></div>
###api
####Stx {constructor}
#####var stx = new Stx(stringOfBemhtml [, { strict: false }])
#####stx.bemhtml {Object}
Has properties:
src
{String} also available as stx.src
match(json)
apply template to bemjson. Also available as stx.match(json)
pp(options)
pretty-print the template, accepts optional options argument (see stx.pp
method)#####stx.bh {Object}
Bh-template is generated when you first dereference this object. Has properties:
src
{String}match(json, options)
apply the template to bemjson. Control global BH defaults by passing optional 2nd argument {json} e.g. {"jsAttrName": "data-bem" , "jsAttrScheme": "json"}
pp(options)
pretty-print the template, accepts optional options argument (see stx.pp
method)#####stx.htmlDiff(json, options)
Apply each Bemhtml and generated Bh template to json. Optional 2nd argument is the same you'd pass to bh.match
. Returns an {Object} with properties:
isEqual
{Boolean} - true
if both templates produce equivalent HTMLhtml
{String} - html if isEqual
, color-coded diff otherwise (ansi colors)#####stx.pp(anyJavaScriptObject, { prompt: "", stringify: false })
Generic pretty-printer. Accepts optional 2nd argument {Object}
with properties:
prompt
{String} - prompt string e.g. name of the object, will be printed under the headerstringify
{Boolean} - add indentation to the object's string representation but don't wrap it in header and footer####Example
var Stx = require('bemhtml-source-convert').Stx,
fs = require('fs'),
stx = new Stx(fs.readFileSync('scratch.bemhtml', 'utf8')),
bemjson = JSON.parse(fs.readFileSync('scratch.json', 'utf8'));
// pretty-print bemjson
stx.pp(bemjson, { prompt: 'bemjson' });
// pretty-print bemhtml
stx.bemhtml.pp({ prompt: 'bemhtml' });
// convert bemhtml into bh and pretty-print the result
try {
stx.bh.pp({ prompt: 'bh generated' });
} catch(e) {
console.log(e.message);
}
// try applying both templates to bemjson showing colored diff if they
// produce different HTML or HTML otherwise
var diff = stx.htmlDiff(bemjson);
console.log(
diff.isEqual ? 'Html\n' : 'Html diff\n',
diff.html);
// write generated bh out
fs.writeFileSync('scratch.bh.js', stx.bh.src);
####Contributors
FAQs
BEMHTML to BH conversion assistant
The npm package bemhtml-source-convert receives a total of 0 weekly downloads. As such, bemhtml-source-convert popularity was classified as not popular.
We found that bemhtml-source-convert demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.