How do I use Meteor Blaze as a stand-alone front-end platform?

I have recently coded Meteor . And as a developer, I just love it! The syntax, the simplicity, is fantastic.

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

How to start, and what about the future of Blaze?

Thank you in advance!

+3


source to share


1 answer


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

You can use a self-contained flame

However, instead of using

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

      



You will use

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

      

in your html file

+3


source







All Articles