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

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

1.0.7 #

  • Login with username by using the existing loginWithPassword method matching the official Meteor style to login with email or username using a single function.

1.0.6 #

  • Implemented dart analysis suggestions for better maintenance.

  • Upgraded mongo_dart to version 0.4.0.

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
40
points
35
downloads

Publisher

verified publishershivamarora.dev

Weekly Downloads

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

Repository (GitHub)

License

BSD-2-Clause (license)

Dependencies

ddp, mongo_dart

More

Packages that depend on meteorify