Falcor is an approach pioneered by Netflix that enables you to quickly build a data-driven APIs that deliver efficient payloads to a variety of client form factors, and is able to adapt quickly to changing data access patterns as your application evolves.
Falcor provides many of the benefits of both REST and RPC, while addressing shortcomings these approaches face when building modern web applications.
Falcor.NET will remain in developer preview until a stable client and server reference version is released from Netflix all baseline functionality is implemented. Follow progress on this GitHub issue: #1
Although Falcor.NET is still in pre-release, regular updates are posted to NuGet.org. More frequent pre-release builds can be found on MyGet.
To get started with Falcor.NET, follow these steps:
- In your ASP.NET web project, install the Falcor.Server.Owin NuGet package:
PM> Install-Package Falcor.Server.Owin -Pre
- Create your application router to match paths to a virtual JSON Graph model:
public class HelloWorldRouter : FalcorRouter
{
public HelloWorldRouter()
{
// Route to match a JSON path, in this case the 'message' member
// of the root JSON node of the virtual JSON Graph
Get["message"] = async _ =>
{
var result = await Task.FromResult(Path("message").Atom("Hello World"));
return Complete(result);
};
// Define additional routes for your virtual model here
}
}
Note: For a more realistic example router, see the example Netflix router which is part of Falcor.Examples.Netflix.Web project that you can run yourself to see the router in action.
- In your OWIN startup class, configure your Falcor.NET router endpoint:
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.UseFalcor("/helloWorldModel.json", routerFactory: config => new HelloWorldRouter());
...
}
}
If you are using IIS (and for most development environments), ensure the web.config has a similar handler configured for your model endpoint:
<system.webServer>
<handlers>
<add name="NetflixFalcorModelHandler" path="model.json" verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>
</system.webServer>
- Using falcor.js in your client, create a new Falcor model, specifying the URL of your new endpoint for your datasource:
var model = new falcor.Model({
source: new falcor.HttpDataSource('/helloWorldModel.json')
});
- You've done all you need to talk to your router, call your model like so:
model.get('message').then(function(json) {
console.log(json);
});
// Result:
{
json: {
message: "Hello World!"
}
}
Good Fit | Poor Fit |
---|---|
Fetching large amounts of small resources (e.g. web components, JSON, metadata, etc.) | Fetching small amounts of large resources (e.g. web pages, images, files, etc.) |
Aggregating heterogeneous services efficiently (e.g. microservices or loosley-coupled modules) | Speaking to a single back-end data source or service provider |
Delivering responsive and capable end-user client experiences | Systems integration and public APIs; static websites |
Heterogeneous and evolving data access patterns (multiple devices, changing use cases) |
Apache 2.0