UNPKG

535 BMarkdownView Raw
1# Marko + Browserify
2
3The [markoify](https://github.com/marko-js/markoify) transform for [browserify](https://github.com/substack/node-browserify) will automatically compile Marko templates that are required by other modules.
4
5The [marko-browserify](https://github.com/marko-js-samples/marko-browserify) sample app is a great starting point if you would like to use Marko with Browserify.
6
7## Installation
8
9```bash
10npm install markoify --save
11```
12
13## Usage
14
15```bash
16browserify -g markoify --extension=".marko" main.js -o bundle.js
17```