Popularity
5.4
Growing
Activity
0.0
Stable
52
5
10
Monthly Downloads: 11,766
Programming language: Elixir
License: MIT License
Tags:
Templating
Mustache
Latest version: v0.2.0
mustache alternatives and similar packages
Based on the "Templating" category.
Alternatively, view mustache alternatives based on common mentions on social networks and blogs.
-
bbmustache
Binary pattern match Based Mustache template engine for Erlang/OTP.
Tired of breaking your main and manually rebasing outdated pull requests?
Managing outdated pull requests is time-consuming. Mergify's Merge Queue automates your pull request management & merging. It's fully integrated to GitHub & coordinated with any CI. Start focusing on code. Try Mergify for free.
Promo
blog.mergify.com
Do you think we are missing an alternative of mustache or a related project?
Popular Comparisons
README
Mustache
Minimal templating with {{mustaches}} in Elixir - http://mustache.github.com/
Prerequisites
- Elixir 1.0.x
Installation
In your mix.exs
, add Mustache as dependency:
defp deps do
[{:mustache, "~> 0.3.0"}]
end
Example
Mustache.render("Hello, my name is {{name}}", %{name: "Alice"})
Tests
The test folder contains tests showing the currently implemented feature set. The tests are taken from the mustache specs project https://github.com/mustache/spec.
Run currently passing tests:
$ mix test --exclude pending:true
Run all tests:
$ mix test