Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@modulor-js/html
Advanced tools
Missing template engine for Web Components
import { html, render } from '@modulor-js/html';
customElements.define('my-component', class extends HTMLElement {
set props({ first, second }){
render(html`
<div>first: ${first}</div>
<div>second: ${second}</div>
`, this);
}
});
const first = 'foo';
render(html`
<my-component first="${first}" second="bar"></my-conponent>
`, document.getElementById('root'));
...and much more
import { html, render } from '@modulor-js/html';
const tpl = (date) => html`
<span>Time: ${date.toLocaleTimeString()}</span>
`;
setInterval(() => {
render(tpl(new Date()), document.getElementById('root'));
}, 1000);
Can be used in production and is already battle tested
Designed to be compatible with CustomElements
Small size (3.3kb minigzipped)
High performance
Native js syntax for templates (tagged template literals)
npm install --save @modulor-js/html
IE >= 11 and all evergreens
In real life templates can (and will) be way bigger and more complex so you might want to split them out of js code
For this case there is modulor-html-loader
npm run build
: build the app
npm run test
: test the app
npm run benchmark
: runs node-based benchmarks
npm run benchmark:browser
: runs benchmarks in browser
Found a bug or issue? Please report it
FAQs
Template engine based on tagged template literals
The npm package @modulor-js/html receives a total of 0 weekly downloads. As such, @modulor-js/html popularity was classified as not popular.
We found that @modulor-js/html 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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.