jste

0.3.0 • Public • Published

jste

NPM Version Node.js CI Coverage Status NPM

JSTE is a JavaScript template engine.

This is a simple cross-platform HTML generation library. It is a convenient and fast tool for creating templates.

Features

  • High performance
  • Convenient JS-compatible syntax
  • Secure, escaping strings by default
  • Cross-platform, works both in NodeJS and in the browser
  • Support for ESM named imports
  • Small footprint, 4KB after gzip
  • Compatible with Express

Installation

npm install jste

Usage

ESM

import { div } from 'jste'

CommonJS

const { div } = require('jste')

Browser

<script src="https://unpkg.com/jste@latest/dist/jste.js"></script>
<script>
  const { div } = jste
</script>

Example

JSTE can be used both in NodeJS and in the browser. Consider an example template that generating simple markup for a single page application:

import { html, head, body, meta, title, link, script } from 'jste'

const example = params => html({
  doctype : true,
  lang : params.lang,
  children : [
    head([
      meta({ charset : 'utf-8' }),
      title(params.title),
      link({
        rel : 'stylesheet',
        href : '/bundle.css',
      })
    ]),
    body(
      script({ src : '/bundle.js' }),
    ),
  ],
})

const result = example({
  lang : 'en',
  title : 'Hello JSTE!',
})
const html = result.toString()

In this example, the constant html is an HTML string with the appropriate markup (line breaks added for readability):

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Hello JSTE!</title>
    <link rel="stylesheet" href="/bundle.css">
  </head>
  <body>
    <script src="/bundle.js"></script>
  </body>
</html>

Documentation

License

The MIT License (MIT)

Readme

Keywords

Package Sidebar

Install

npm i jste

Weekly Downloads

0

Version

0.3.0

License

MIT

Unpacked Size

74.5 kB

Total Files

13

Last publish

Collaborators

  • aristov