![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
lightweight, simple and powerful javascript template engine
verry simple template engine use ES6 - Template literals to render all type of pain text (HTML, json, email, code generater etc.)
you can install from npm
by:
npm install kiss-tpl --save
or from github:
git clone https://github.com/minhlucvan/kiss-tpl.git
Just like template literals, no it's template literals.
import kiss from 'kiss-tpl';
let context = {thing: "world" };
let tpl = ctx => kiss`hello ${ctx.world}`;
console.log(tpl(context)); // hello world
pretty easy right!
let me show you something cool
there is no if
- else
here but you can do this instead.
let context = {isFine: true };
let tpl = ctx => kiss`
A: hello, how are you today?
B: hi, ${ctx.isFine ? "oh, I'm fine thank you." : "oh, I feel not verry good."}.
`;
es6 is amazing.
of course there is no for
, but you can use map
let context = {frieds: ["Bob", "julia", "Ren", "Samath"] };
let tpl = ctx => kiss`
I have many friends like ${ctx.frieds.map((friend) => fried + 'y';)}
`;
you can also put a functuon callback like this.
function plus( one, other ){
return one + other;
}
let context = {one: 3, other: 1 };
let tpl = ctx => kiss`
${ctx.one} + ${ctx.other} = ${plus(ctx.one, ctx.other)}
`;
thank for reading and happy coding.
FAQs
lightweight, simple and powerful javascript template engine
The npm package kiss-tpl receives a total of 14 weekly downloads. As such, kiss-tpl popularity was classified as not popular.
We found that kiss-tpl 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.