Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ejst

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ejst

A embedded javascript template engine for nodejs

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ejst

A embedded javascript template engine for nodejs.

  • Auto cache template file to improving performance
  • Include feature

Installation

$ npm install ejst --save

Usage

Render string template

const ejst = require('ejst')

// render HTML string
let str = ejst.render('<h5><%=title%></h5>', { title: 'Hello' })
console.log(str)

Render file template

<!--index.html-->
<div>
  <div class="dialog">
    <% if(typeof title === 'string'){ %>
    <div class="dialog__hd">
      <strong class="dialog__title"><%=title%></strong>
    </div>
    <% } %>
    <div class="dialog__bd"><%=content%></div>
    <div class="dialog__ft">
    <% for(var i = 0; i < buttons.length; i++){ %>
      <%=include('./examples/include.html', {button: buttons[i]})%>
    <% } %>
    </div>
  </div>
</div>
<!--include.html-->
<a href="javascript:;" class="dialog__btn dialog__btn_<%=button.type%>"><%=button.label%></a>
const ejst = require('ejst')

// render HTML file
let data = {
  title: 'Question',
  content: 'Are you sure?',
  buttons: [{ label: 'Yes', type: 'green' }, { label: 'No', type: 'gray' }]
}

let str = ejst.renderFile('./examples/index.html', data)
console.log(str)

Include

<div>
  <% for(var i = 0; i < buttons.length; i++){ %>
    <%=include('./examples/include.html', {button: buttons[i]})%>
  <% } %>
</div>

License

MIT

Keywords

FAQs

Package last updated on 26 Jul 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc