Questions tagged [angular2-meteor]

The angular2-meteor component serves as a crucial link between Angular 2 and Meteor, enhancing the integration of your Angular 2 project with the powerful capabilities of the Meteor backend.

Why aren't all client perspectives updated when I delete documents from the collection?

Currently, I am utilizing Angular2-meteor which is running on Angular2 Beta 1. Within my simple component, I have: A button to add a document. Once added, the document can be removed by its _id using another button. Additionally, there is a "Remove All" ...

Sharing data between two components in an Angular2-Meteor application

I am currently working with angular2-meteor. When attempting to transfer a value between two components (updating the value in the first component triggers an event in the second component where the new value is used), I have two methods available: The ...

Angular2's use of promises, observables, and Dependency Injection (

If I have a service that looks like this import {Injectable} from 'angular2/core'; @Injectable() export class MyService { search(oSrchParams){ let promise = () => new Promise((resolve, reject) => Meteor.call('mockSearchWS', (error ...

Incorporating the non-typescript npm package "pondjs" into Meteor applications using typescript files

Implementing the Pondjs library into my project seemed straightforward at first: meteor npm install --save pondjs However, I'm encountering difficulties when trying to integrate it with my Typescript files. The documentation suggests: In order ...