Giter Club home page Giter Club logo

curio's Introduction

curio

Build Status

A small server side string template engine. String replacement engine that allow you to do property name based replacement in string templates from multiple JSON objects at a time.

##Installation

npm install --save curio

##Usage

A simple example:

var curio = require('curio');

var myTemplate = 'hello {userName}';
var user = {userName : 'world'};

var rendered = curio(myTemplate, user);

//now rendered == 'hello world'
console.log(rendered);

You can pass multiple objects to it to use to render the template. This makes it easy to process a template against several objects at a time.

var curio = require('curio');

var myTemplate = '{name.first} {name.last}{test.level1.level2}';
var user = {
    name :
        {first : 'hello', last : 'world'}
    };

var other = {
    test : {
        level1 : {
            level2 : '!'
        }
    }
};

var rendered = curio(myTemplate, user, other);

//now rendered == 'hello world!'
console.log(rendered);

NEW basic string commands can now be applied in the template.
Supported commands are currently UPPER and LOWER

var curio = require('curio');

var myTemplate = 'hello {userName|UPPER}';
var user = {userName : 'world'};

var rendered = curio(myTemplate, user);

//now rendered == 'hello WORLD'
console.log(rendered);

The objects can't have name collisions at the root level because they are merged into a single object.

I built this to do server side replacement on web hooks, but it is generally useful to just process strings.

  • 1.1.0 Added basic command support for UPPER and LOWER
  • 1.0.0 Updated reference for debug
  • 0.2.1 readme update
  • 0.2.0 Changed logging behavior to only stringify objects when debug is enabled for the curio:process namespace
  • 0.1.0 Initial version of the library

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.