# can-stache-ast

[![Build Status](https://travis-ci.org/canjs/can-stache-ast.svg?branch=master)](https://travis-ci.org/canjs/can-stache-ast)



## Usage

### ES6 use

With StealJS, you can import this module directly in a template that is autorendered:

```js
import plugin from 'can-stache-ast';
```

### CommonJS use

Use `require` to load `can-stache-ast` and everything else
needed to create a template that uses `can-stache-ast`:

```js
var plugin = require("can-stache-ast");
```

### Standalone use

Load the `global` version of the plugin:

```html
<script src='./node_modules/can-stache-ast/dist/global/can-stache-ast.js'></script>
```
