Reputation: 7757
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
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