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

ez-string

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ez-string

A string template renderer for JavaScript without memory leaks.

  • 1.1.10
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ez-string

Travis build status badge Code coverage status badge ESDoc coverage badge Number of tests Codacy code quality badge

A string template renderer for JavaScript without memory leaks. It supports referencing variables by position, by name. One can access properties and array elements.

API reference

Example

const render = require('ez-string').render;
let book;

// Format using variable's position
book = render('One of my favorite books is "{0}" by {1}.', 'The Name of the Wind', 'Patrick Rothfuss');
// book = 'One of my favorite books is "The Name of the Wind" by Patrick Rothfuss.'

// Format using variable's name
// Variable names must use A-Za-z0-9$_
book = render('One of my favorite books is "{title}" by {author}.',
    { title: 'The Name of the Wind', author: 'Patrick Rothfuss'});
// book = 'One of my favorite books is "The Name of the Wind" by Patrick Rothfuss.'

// Curly braces are escaped by using double braces
let example;
example = render('{{title}}');
// example = '{title}'

// One can use array indices
book = render('"{arr[0]}" was first published in {arr[1]}.',
    { arr: ['The Hobbit', 1937]});
// book = '"The Hobbit" was first published in 1937.'

// One can use object properties.
// Properties with names consisting of A-Za-z0-9$_ can be accessed using property notation
// Properties with other names can be accessed using index notation
book = render('"{book.title}" was written by {book.author["first name"]} {book.author["last name"]}. It was published in {book.year}.', { 
        book: {
            title: 'Marina',
            year : 1999,
            author: {
                'first name': 'Carlos',
                'last name': 'Zafon'
            }
        }
    });
// book = '"Marina" was written by Carlos Zafon. It was published in 1999.'

// If a property name contains a quote character or backslash, they need to be escaped.
// Quotes are prepended by a backslash
// Backslashes need to be doubled
example = render('{data["\\\\"]}', {
    data: {'\\': 'backslash'}
});
// example = 'backslash'
example = render('{data["\\""]}', {
    data: {'"': 'quote'}
});
// example = 'quote'

Installation

Using NodeJS:

$ npm i --save ez-string
const render = require('ez-string').render;
let book;

// Format using variable's position
book = render('One of the best books by {author} is "{title}".', {
    author: 'Stephen King',
    title: '11/22/63'
});
// book = 'One of the best books by Stephen King is "11/22/63".'

In a browser:

<!-- Load library which is UMD packed -->
<script src="ez-string.js"></script>

<script>
    let book;

    // Format using variable's position
    book = render('One of the best books by {author} is "{title}".', {
        author: 'Stephen King',
        title: '11/22/63'
    });
    // book = 'One of the best books by Stephen King is "11/22/63".'
</script>

Why ez-string

The most important reason is that this library doesn't leak memory.

Many of the existing template renderers perform a two-step process. They compile a string template into a JavaScript function and then execute it while passing context data. However, most users of such libraries rarely cache the resulting compiled function. Instead they may compile the same template again and again. Due to inticacies of NodeJS memory garbage collection. Such pattern usually results in a memory leak, as described by Meteor developers.

Library documentation is here.

Keywords

FAQs

Package last updated on 16 Apr 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