Upshot js vs breeze js

Is upshot js an active development? All published articles were written in March 2012. Is js stable? The breeze seems to be in active development.

Is it ready for production? The vs spa app template was added and then removed. when will it be re-added? I assume it will be added using upshot, since upshot is bound to ms.

public class TodosController : ApiController { readonly EFContextProvider<TodosContext> contextProvider = new EFContextProvider<TodosContext>("TodosContext"); // ~/api/todos/Metadata [AcceptVerbs("GET")] public string Metadata() { return contextProvider.Metadata(); } // ~/api/todos/Todos // ~/api/todos/Todos?$filter=IsArchived%20eq%20false&$orderby=CreatedAt [AcceptVerbs("GET")] public IQueryable<TodoItem> Todos() { return contextProvider.Context.Todos; } // ~/api/todos/SaveChanges [AcceptVerbs("POST")] public SaveResult SaveChanges(JArray saveBundle) { return contextProvider.SaveChanges(saveBundle); } // other miscellaneous actions of no interest to us here } 
+8
single-page-application upshot breeze
source share
4 answers

Impressions are Dead According to Latest Roadmap: ASP.NET Website Roadmap

I guess now Breeze . We would like them to add a larger sample than the classic ToDo, so that we can see what it is really capable of.

+11
source share

Clive. I see that you posted a snapshot of the web API controller from the Breeze Todo sample. Happy that you look at it.

No one had heard of this at an age. He may be dead, or he may just be dead with the possibility of rebirth someday. It really is not "living" in any practical sense.

The breeze, on the other hand, is developing very actively. NTN

+10
source share

We used extensively (at least six months) in a rather large project, and after some serious problems we decided to abandon it - in my opinion, it is not ready for use in production however, if your application is very simple (therefore, the todo app example and the example delivery tracking).

The check, their last significant commit was more than six months ago (early 2012), and the code is large, complex and filled with NYI comments (not yet implemented).

+2
source share

Juan is in place. Came out dead.

"At the beginning of this year, the beta version of Visual Studio 2012 included a template that was designed to create" one-page applications "using Upshot.js and a special DataController based on the Web API that provided support for insert, update and delete operations using a unit of the work template with transactional support.We are currently not continuing to work on this template or Upshot.js.We want to first focus on improving development experience using existing popular JavaScript libraries, and in future versions we are revising this is the solution and see if additional libraries are needed to complete the SPA experience. "

Colin Blair gives his thoughts on the blog of RIA services, WCF RIA Services Dead, Long Live WCF RIA Services .

+1
source share

All Articles