rista404
rista404

Reputation: 7757

How to use Meteor's Blaze as a standalone front-end framework?

Recently I've been coding with Meteor. And as a front-end developer, I simply love it! The syntax, the simplicity, it is fantastic.

I am now curious how to use Blaze standalone, as a front-end framework like Angular. What about routing, ajax calls, and other stuff?

How to get started, and what about the future of the Blaze?

Thank you in advance!

Upvotes: 3

Views: 483

Answers (1)

Green
Green

Reputation: 5000

Have a look at http://meteor.github.io/blaze/

You can use blaze stand alone

However, instead of using

<template name="foo"></template>

You will use

<script type="text/spacebars" name="foo"></script>

in your html file

Upvotes: 3

Related Questions