
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
karma-html2js-preprocessor
Advanced tools
A Karma plugin. Convert HTML files into JS strings to serve them in a script tag.
Preprocessor for converting HTML files into JS strings.
Note: If you are using AngularJS, check out karma-ng-html2js-preprocessor.
The easiest way is to keep karma-html2js-preprocessor
as a devDependency in your package.json
.
{
"devDependencies": {
"karma": "~0.10",
"karma-html2js-preprocessor": "~0.1"
}
}
You can simple do it by:
npm install karma-html2js-preprocessor --save-dev
Following code shows the default configuration...
// karma.conf.js
module.exports = function(config) {
config.set({
preprocessors: {
'**/*.html': ['html2js']
},
files: [
'*.js',
'*.html'
]
});
};
This preprocessor converts HTML files into JS strings and publishes them in the global window.__html__
, so that you can use these for testing DOM operations.
For instance this template.html
...
<div>something</div>
... will be served as template.html.js
:
window.__html__ = window.__html__ || {};
window.__html__['template.html'] = '<div>something</div>';
See the end2end test for a complete example.
For more information on Karma see the homepage.
FAQs
A Karma plugin. Convert HTML files into JS strings to serve them in a script tag.
The npm package karma-html2js-preprocessor receives a total of 20,738 weekly downloads. As such, karma-html2js-preprocessor popularity was classified as popular.
We found that karma-html2js-preprocessor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.