Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/brecert/micro_template
- Owner: brecert
- Created: 2021-04-21T05:46:58.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-02T23:08:33.000Z (over 3 years ago)
- Last Synced: 2024-12-25T18:03:58.523Z (13 days ago)
- Topics: deno, javascript, replace, template, typescript
- Language: TypeScript
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!"
```