platform/README.md
2017-11-18 13:39:10 -05:00

35 lines
1.1 KiB
Markdown

# mustache
[![Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/angel_dart/discussion)
[![version](https://img.shields.io/pub/v/angel_mustache.svg)](https://pub.dartlang.org/packages/angel_mustache)
[![build status](https://travis-ci.org/angel-dart/mustache.svg?branch=master)](https://travis-ci.org/angel-dart/mustache)
Mustache (Handlebars) view generator for the [Angel](https://github.com/angel-dart/angel)
web server framework.
Thanks so much @c4wrd for his help with bringing this project to life!
# Installation
In `pubspec.yaml`:
```yaml
dependencies:
angel_mustache: ^1.1.0
```
# Usage
```dart
const FileSystem fs = const LocalFileSystem();
configureServer(Angel app) async {
// Run the plug-in
await app.configure(mustache(fs.directory('views')));
// Render `hello.mustache`
await res.render('hello', {'name': 'world'});
}
```
# Options
- **partialsPath**: A path within the viewsDirectory to search for partials in.
Default is `./partials`.
- **fileExtension**: The file extension to search for. Default is `.mustache`.