Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jantimon/handlebars-to-ecmascript
Convert handlebars to an ecmascript AST
https://github.com/jantimon/handlebars-to-ecmascript
Last synced: 28 days ago
JSON representation
Convert handlebars to an ecmascript AST
- Host: GitHub
- URL: https://github.com/jantimon/handlebars-to-ecmascript
- Owner: jantimon
- License: mit
- Created: 2017-03-16T07:29:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-03-16T18:18:32.000Z (over 7 years ago)
- Last Synced: 2024-04-15T01:09:29.009Z (7 months ago)
- Language: JavaScript
- Homepage: https://jantimon.github.io/handlebars-to-ecmascript/
- Size: 445 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Highly experimental
Proof of concept
Turns a template
```
Hello {{world}}!
```into a ecmascript module
```js
export function render(data1) {
return 'Hello ' + data1.world + '!';
};
```# License
This project is licensed under [MIT](https://github.com/jantimon/handlebars-to-ecmascript/blob/master/LICENSE).