There is stand-alone Blaze which is Meteor's front-end rendering engine. The current distribution is a bit dated and includes a lot of things you might not need: minimongo, deps, jquery, underscore.
If you want to assemble a set of Meteor packages manually, you can follow this:
$ meteor create dummy-app
$ cd dummy-app
$ meteor add iron:router percolate:momentum # ... put packages you want to use here
$ meteor build ../build --directory
$ cd ../build/bundle/programs/web.browser
$ # grab js and css here
There is stand-alone Blaze which is Meteor's front-end rendering engine. The current distribution is a bit dated and includes a lot of things you might not need: minimongo, deps, jquery, underscore.
If you want to assemble a set of Meteor packages manually, you can follow this: