Currently, I am exploring the integration of Meteor with my Angular project structure and templates. In this quest, I came across a library called Asteroid which is described as "A javascript client (browser and node) for a Meteor backend, Asteroid gives the possibility to connect to a Meteor backend with any JS app." You can find more information about it here.
The documentation for Asteroid seems sufficient, but one thing that I find lacking is guidance on how to organize files and set up a proper project structure. I have successfully integrated the asteroid files using require on my client side, but when it comes to creating an Asteroid instance with the Meteor server as the host, I am unsure of how to do it - especially setting the "host" parameter and running it on my local machine.
var a = new Asteroid(host, ssl, interceptor)
If anyone has experience using Asteroid and can provide some direction or tips on this matter, I would greatly appreciate it.