meteorify 1.0.5 copy "meteorify: ^1.0.5" to clipboard
meteorify: ^1.0.5 copied to clipboard

outdated

A dart package to interact with Meteor. Connect your web or flutter apps, written in Dart, with the Meteor framework.

1.0.5 #

  • Now you can pass parameters to subscriptions. Use the following syntax:

    int subscriptionId = await Meteor.subscribe(subscriptionName, args=[arg1,arg2]);
    
  • You can provide a custom db port for the meteor database. Use the following syntax:

    await Meteor.connect("ws://example.meteor.com/websocket", dbPort: 4001);
    

1.0.4 #

  • Updated mongo_dart to provide Dart 2.5 compatibility.

1.0.3 #

  • Fixed the future already completed on status changed bug.

  • Now, you can set a listener for the connection events.

    • Meteor.connectionListener = (ConnectionStatus connectionStatus){
        print(connectionStatus);
      }
      
  • You can now provide a custom interval for checking the status of the server by specifying heartbeatInterval within Meteor.connect()

  • You can now enable autoLoginOnReconnect to re-login the currently logged in user whenever the connection reconnects after a disconnection.

1.0.2 #

  • Provided a method to call serviceMethods exported from Meteor using Meteor.call().
  • Provided documentation for most of the classes and methods.

1.0.1 #

  • Improve package health and fix analysis issues

1.0.0 #

  • Initial version, created by ShivamArora
  • Features
    • Connect to Meteor server
    • Use Meteor Subscriptions
    • Meteor Authentication
    • Call Custom Methods on Meteor
    • Access underlying databases
6
likes
0
pub points
0%
popularity

Publisher

verified publishershivamarora.dev

A dart package to interact with Meteor. Connect your web or flutter apps, written in Dart, with the Meteor framework.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

ddp, mongo_dart

More

Packages that depend on meteorify