Big News: Socket Selected for OpenAI's Cybersecurity Grant Program.Details
Socket
Book a DemoSign in
Socket

yeahjs

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yeahjs

A tiny, modern implementation of EJS templates

Source
npmnpm
Version
0.2.0
Version published
Weekly downloads
541
72.29%
Maintainers
1
Weekly downloads
 
Created
Source

yeahjs

A tiny, modern, fast implementation of EJS (Embedded JavaScript Templates). A nearly drop-in replacement for ejs with a few intentional limitations.

Build Status Install Size Min-zipped Size Simply Awesome

Example

<ul>
<% for (let word of locals.items) { -%>
  <li><%= word %></li>
<% } -%>
</ul>
const template = yeahjs.compile(ejs);
const output = template({items: ['flour', 'water', 'salt']});
<ul>
  <li>flour</li>
  <li>water</li>
  <li>salt</li>
</ul>

Compared to ejs

There are a few key differences that allow yeahjs to be so small and fast:

  • Strict mode only (no with keyword in compiled functions).
  • Only static path includes (include('header.ejs'), but not include(dir + file)).
  • File handling not included — provide it with read and resolve options (see example).

Otherwise yeahjs produces identical output to ejs.

Usage

const template = yeahjs.compile(ejs, options);

Returns a function of the form (data) => content. Options:

  • localsName: the namespace to use for accessing template data (locals by default for <%= locals.foo %>).
  • locals: an array of variables to access directly (e.g. ['foo'] will allow <%= foo %> instead of <%= locals.foo %>).
  • context: an object to use as this in templates (null by default).
  • escape: a custom escaping function for values inside <%= ... %> (escapes XML by default).
  • async: if true, generates an async function to make it possible to use await inside templates (false by default).
  • filename: the file name of the template if present (used for resolving includes).
  • read: a function of the form (filename) => content for reading includes (e.g. from file system in Node).
  • resolve: a function of the form (parentPath, includePath) => path for resolving include paths.
  • cache: an object to cache compiled includes in for faster compilation; reuse between compile runs for best performance ({} by default).

EJS cheatsheet

  • <%= value %>: output the value (escaped).
  • <%- value %>: output the value (raw).
  • <% code %>: use arbitrary JavaScript.
  • <%_ code %>: use arbitrary JavaScript and strip whitespace on the same line before the tag.
  • ... _%>: strip whitespace and a single line break on the same line after the tag.
  • ... -%>: strip a single line break immediately after the tag.
  • <%%, %%>: output literal <% or %>.
  • <%# comment %>: comment (ignored).
  • <%- include('path/to/template.ejs', {foo: bar}) %>: include another template, optionally passing data.

File handling

An example of using read, resolve and filename options in Node.js to process includes:

const {readFileSync} = require('fs');
const {join, dirname} = require('path');

const template = yeahjs.compile(`<%- include('../bar.html') %>`, {
    filename: 'foo/foo.html',
    resolve: (parent, filename) => join(dirname(parent), filename),
    read: filename => readFileSync(filename, 'utf8')
});

Keywords

ejs

FAQs

Package last updated on 15 May 2020

Did you know?

Socket

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.

Install

Related posts