meteor-pg
meteor-pg copied to clipboard
Reactive PostgreSQL for Meteor
After updating to Meteor 1.8 the statement test = new PgSubscritption('test_sub'); fail with the error: Uncaught TypeError: Class constructor Dependency cannot be invoked without 'new'
after upgrade to meteor 1.6 it fails to decode the postgres connection string > error: password authentication failed for user using export POSTGRESQL_URL="connectionstring"
There is a problem with subscription within a reactive container (React framework used). `` const MyComponentContainer = createContainer(() => { const sub = new PgSubscription('my_sub'); return {ready: sub.ready()}; }, MyComponent);...
Hello, I'm a first time meteor user, so sorry if this seems like a beginner question, or off-topic: How would I use meteor-pg with Angular? I can't figure out how...
Hi, I've been trying to find a way to modify the select results before returning them to the client. This is what I'm doing at the moment: ``` var r...
Currently when you change a PgSubscription a new pub/sub is created and you receive all table data as _added_ in the diff. I would be super handy if the change...
Hi Ben! First of all, hats off for pursuing this project. I could tell at the last dev shop that it has not been a walk in the park, and...
Considering using this; what are the current limitations? Would be nice to document them in the README.