Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/brecert/micro_template

micro_template is a very simple and small templating tool
https://github.com/brecert/micro_template

deno javascript replace template typescript

Last synced: 3 days ago
JSON representation

micro_template is a very simple and small templating tool

Awesome Lists containing this project

README

        

# micro-template

A very simple and small templating tool.

Usage:
```ts
import * as template from './replace.ts'

template.replace('Hello {name}!', { name: 'bree' })
// => "Hello bree!"
```