
Security News
High Salaries No Longer Enough to Attract Top Cybersecurity Talent
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
@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 2 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
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.