As part of our Month of Metro, we’re also integrating Data Abstract (and RemObjects SDK) for JavaScript into Visual Studio, letting you create Metro apps that talk your servers.

While we of course fully support Metro with Data Abstract for .NET as well, this feature will also be available with Data Abstract for Delphi, so don;t be surprised if the DA/Delphi installer suddenly offers to integrate into Visual Studio ;).

Just as you’d expect, we provide a template for a Data Abstract Metro Application in the File|New project dialog:

![](http://blogs.remobjects.com/wp-content/uploads/2012/03/DAJS-Metro-1.png)
which will launch into the familiar New project Wizard that you already know from DA/.NET and DA/Delphi. Of course JavaScript is a client-only technology, so the server options are not available, but you can choose to connect your JavaScript app to either Relativity Server or a custom Data Abstract Server.
![](http://blogs.remobjects.com/wp-content/uploads/2012/03/DAJS-Metro-21.png)
As you can see, we’ve also started re-theming the wizard to match Visual Studio 11’s flatter look. I’ll spare you the remaining Wizard steps, as they will be pretty similar to running the wizard for DA/.NET or DA/Delphi.

Once the wizard is completed, you have a ready-to-run JavaScript application, with a couple of pieces of code that you can uncomment to easily download data and show it in a

.

![](http://blogs.remobjects.com/wp-content/uploads/2012/03/DAJS-Metro-3.png)
For this post, i’ll enable the download of [PCTrade](http://wiki.remobjects.com/wiki/Data_Abstract_Samples)‘s “CLients” table in *default.js*…
adapter.getData(clientsTable, RemObjects.DataAbstract.Util.createRequestInfo(true,30,"",[]),function(){new RemObjects.DataAbstract.Views.HtmlTableView(clientsTable,"table-clients");}, RemObjects.UTIL.showError);