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.
minify-html-literals
Advanced tools
Minify HTML markup inside JavaScript template literal strings.
Template literals are often used in JavaScript to write HTML and CSS markup (ex. lit-html). This library allows a developer to minify markup that is normally ignored by JavaScript minifiers.
import { minifyHTMLLiterals } from 'minify-html-literals';
// const minifyHTMLLiterals = require('minify-html-literals').minifyHTMLLiterals
const result = minifyHTMLLiterals(
`function render(title, items) {
return html\`
<style>
.heading {
color: blue;
}
</style>
<h1 class="heading">\${title}</h1>
<ul>
\${items.map(item => {
return getHTML()\`
<li>\${item}</li>
\`;
})}
</ul>
\`;
}`,
{
fileName: 'render.js'
}
);
console.log(result.code);
// function render(title, items) {
// return html`<style>.heading{color:#00f}</style><h1 class=heading>${title}</h1><ul>${items.map(item => {
// return getHTML()`<li>${item}</li>`;
// })}</ul>`;
// }
console.log(result.map);
// {
// "version": 3,
// "file": "render.js.map",
// "sources": ["render.js"],
// "sourcesContent": [null],
// "names": [],
// "mappings": "AAAA;gBACgB,qDAMU,QAAQ,SAE1B;2BACmB,IACX,OAAO,KACb;WACC,KAEP;"
// }
Be sure to minify template literals before transpiling to ES5. Otherwise, the API will not be able to find any template literal (`${}`
) strings.
The following options are common to typical use cases.
Property | Type | Default | Description |
---|---|---|---|
fileName | string | Required. The name of the file, used for syntax parsing and source maps. | |
minifyOptions? | html-minifier options | defaultMinifyOptions | Defaults to production-ready minification. |
shouldMinify? | function | defaultShouldMinify | A function that determines whether or not a template should be minified. Defaults to minify all tagged templates whose tag name contains "html" (case insensitive). |
All aspects of the API are exposed and customizable. The following options will not typically be used unless you need to change how a certain aspect of the API handles a use case.
Property | Type | Default | Description |
---|---|---|---|
generateSourceMap? | boolean or `(ms: MagicString, fileName: string) => SourceMap | undefined` | defaultGenerateSourceMap |
strategy? | object | defaultStrategy | An object with methods defining how to minify HTML. The default strategy uses html-minifier. |
validate? | boolean or object | defaultValidation | Set to false to disable strategy validation checks, or to a custom set of validation functions. This is only useful when implementing a custom strategy. |
parseLiterals? | function | parse-literals | Override the function used to parse template literals from a source string. |
parseLiteralsOptions? | object | Additional options to pass to parseLiterals() | |
MagicString? | function | MagicString | Override the MagicString-like constructor to use for manipulating the source string and generating source maps. |
import { minifyHTMLLiterals, defaultMinifyOptions } from 'minify-html-literals';
minifyHTMLLiterals(source, {
fileName: 'render.js',
minifyOptions: {
...defaultMinifyOptions,
minifyCSS: false
}
});
import { minifyHTMLLiterals, defaultShouldMinify } from 'minify-html-literals';
minifyHTMLLiterals(
`function render() {
return html\`
<h1>This tagged template is minified</h1>
\${\`
<div>and so is this non-tagged template</div>
\`}
\`;
}`,
{
fileName: 'render.js',
shouldMinify(template) {
return (
defaultShouldMinify(template) ||
template.parts.some(part => {
return part.text.includes('<div>');
})
);
}
}
);
minifyHTMLLiterals(source, {
fileName: 'render.js',
generateSourceMap(ms, fileName) {
return ms.generateMap({
file: `${fileName}-converted.map`, // change file name
source: fileName,
includeContent: true // include source contents
});
}
});
FAQs
Minify HTML template literal strings
We found that minify-html-literals 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.
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.