t3l3p05t 0.0.1 copy "t3l3p05t: ^0.0.1" to clipboard
t3l3p05t: ^0.0.1 copied to clipboard

A UDP based copy of Graphene Server

t3l3p05t #

A UDP based copy of Graphene Server

Status: Experimental, untested code. #

Library Example #

String message = "Hello World";
await startServer(
  internetAddress: InternetAddress.anyIPv4, 
  port: 8080, 
  query: Query(
    resolver: {
      "hello_world": (arguments)async{
        return message;
      }
    },
  ), 
  mutations: Mutation(
    resolver: {
      "update_message": (arguments)async{
        String newMessage = arguments["new_message"];
        message = newMessage;
        return true;
      },
    },
  ),
);
0
likes
105
points
4
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A UDP based copy of Graphene Server

License

LGPL-3.0 (license)

Dependencies

bson, compute, dart_udx, objective_db, path

More

Packages that depend on t3l3p05t