Giter VIP home page Giter VIP logo

li-template's Introduction

li-template

HTML template literals view engine with compiler for plain Node.js modules

Official page

Documentation and examples are available at https://patrickpissurno.com.br/li-template

Downloads

How it works

li-template (pronounced "lite and plate") works by transpiling .lit template files (HTML + ES6 template literals) into plain ES6 template literals and then compiling them as Node.js modules. By doing this, you can harness maximum performance, as the Node's V8 JIT compiler can fully optimize.

This library also leverages the power of template literals by supporting some other cool stuff:

  • Template files are compiled into NodeJS modules and in-memory cached
  • Partials and compiled partials
  • Short-hand for exists statement
  • Short-hand for non-exists or empty statement
  • Short-hand for loops
  • Every thing you can do with Javascript
  • Ultra small size
  • Blazing fast

This templating engine was inspired by Mustache and is intended to be used in a logic-less fashion.

However

It was made in a way so you could use as much logic as you would like to. All things from Javascript can be used inside your templates.

Dead simple and hyper fast

You don't have to learn anything at all. You can just start writing normal ES6 Javascript and do whatever you want. But to make thing even better, we've added a syntax-sugar on top of plain ES6 template literals, our so-called short-hands. They do the very same thing that you could do by writing plain javascript. But they're more compact and concise. There are just three:

Exists (if something is not null)

Short-hand

$(this.something?){<b>${this.something}</b>}

Transpiles into

${this.something ? `<b>${this.something}</b>` : ''}

Non-exists or empty (if something is null or something.length === 0)

Short-hand

$(!this.something?){<b>Empty</b>}

Transpiles into

${this.something == null || this.something.length === 0 ? `<b>Empty</b>` : ''}

Loops

Short-hand

$(this.names:name){<b>I'm ${name}</b>}

Transpiles into

${this.names.map(x => `<b>I'm ${x.name}</b>`).join('')}

Basic syntax

Inside ${} you can use whatever from Javascript you would like to. Functions, methods, properties, process.env... Whatever. Just keep in mind that whatever you do write in there, would have to work with plain ${} template literals in Node.js module context.

String template (replace)

This one is just like plain ES6 template literals.

${this.something}

It will be replaced at render time with this.something's value.

Escaping content

li-template by default doesn't escape anything. So you are 100% vulnerable to XSS attacks or something. This is intended by design, as we want to achieve maximum performance. But this doesn't mean that we're going to leave you on your own. We offer a method that is accessible from within ALL .lit template files that will escape anything. Just call ${safe(this.somethingDangerous)} and you'll be fine. It's easy!

Escaping li-template

Sometimes li-template may conflict with third-party libraries like inline jQuery. No problem! Just use the backslash before the dollar sign and li-template is going to ignore that tag.

Like this: \$('.my-jquery-selector')

Take a look at the demo

There is a demo where you can play around and learn by yourself. Just clone this repo and you'll find it inside the demo folder. Run npm install && node demo.jsand open your browser at localhost:3000 to play around a little bit. Or see a running example here

Downloads

License

MIT License

Copyright (c) 2018-2019 Patrick Pissurno

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

li-template's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

lucianohanna

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.