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

barbe

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

barbe

Like mustache, but simple, tiny and fast.

  • 3.0.9
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7.4K
increased by2.45%
Maintainers
1
Weekly downloads
 
Created
Source

barbe

barbe

Support me on Patreon Buy me a book PayPal Travis Version Downloads

Like mustache, but simple, tiny and fast.

:cloud: Installation

$ npm i --save barbe

:clipboard: Example

const barbe = require("barbe");

// Use {curly braces}, which is default
console.log(barbe("Hello {world}!", {
    world: "Mars"
}));
// => "Hello Mars!"

// Different separators
console.log(barbe("Hello <world>!", ["<", ">"], {
    world: "World"
}));
// => "Hello World!"

// Use a function instead of a string
console.log(barbe("Hello ###world##!", ["###", "##"], {
    world: function () {
        return "Sun";
    }
}));
// => "Hello Sun!"

// Use a function instead of a string
console.log(barbe("Hello {{worlds.pluto}} from {{worlds.earth}}!", ["{{", "}}"], {
    worlds: {
        pluto: function () {
            return "Pluto";
        }
      , earth: "Earth"
    }
}));
// => "Hello Pluto from Earth!"

:memo: Documentation

barbe(text, arr, data)

Renders the input template including the data.

Params
  • String text: The template text.
  • Array arr: An array of two elements: the first one being the start snippet (default: "{") and the second one being the end snippet (default: "}").
  • Object data: The template data.
Return
  • String The rendered template.

:yum: How to contribute

Have an idea? Found a bug? See how to contribute.

:sparkling_heart: Support my projects

I open-source almost everything I can, and I try to reply everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).

However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:

  • Starring and sharing the projects you like :rocket:

  • PayPal—You can make one-time donations via PayPal. I'll probably buy a coffee tea. :tea:

  • Support me on Patreon—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).

  • Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6

Thanks! :heart:

:dizzy: Where is this library used?

If you are using this library in one of your projects, add it in this list. :sparkles:

  • emojer—Emojify all the things.
  • err—A tiny library to create custom errors in JavaScript.
  • github-old-header—Brings the old header links back.
  • kindly-license—A human readable license for projects created by human-beings.
  • match—Simplest way to create match memory games.
  • ship-release—Publish new versions on GitHub and npm with ease.
  • showalicense.com—A site to provide an easy way to show licenses and their human-readable explanations.

:scroll: License

MIT © Ionică Bizău

Keywords

FAQs

Package last updated on 20 Mar 2017

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