Skip to content

Pajn/falcor_dart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

falcor_dart

Build Status

This is Falcor router implementation for dart.

And as the falcor team states: This release is a developer preview.

Usage

A simple usage example:

import 'package:falcor_dart/falcor_dart.dart';

main() {
  final router = new Router([
      route(
        // match a request for the key "greeting"
        'greeting',
        // respond with a PathValue with the value of "Hello World."
        get: (path) {
          return {
            'path': ['greeting'],
            'value': 'Hello World'
          };
        }
      )
  ]);
}

More information

For in-depth information on the Falcor Router, see the Router Guide in the Falcor Website.

Features and bugs

This release contains all the issues and feature requests from falcor-router.

Please file feature requests and bugs at the issue tracker.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages