platform/README.md
2017-04-05 14:37:26 -04:00

27 lines
662 B
Markdown

# mustache
Mustache (Handlebars) view generator for Angel.
# Installation
In `pubspec.yaml`:
```yaml
dependencies:
angel_mustache: ^1.0.0
```
If your project imports [`package:angel_common`](https://github.com/angel-dart/common),
then this is already installed.
# Usage
```
// Run the plug-in
await app.configure(mustache(new Directory('views')));
// Render `hello.mustache`
res.render('hello', {'name': 'world'});
```
# Options
- **partialsPath**: A path within the viewsDirectory to search for partials in.
Default is `./partials`. *Include the leading dot, please*.
- **fileExtension**: The file extension to search for. Default is `.mustache`.