TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

SmartReactives: a .NET library that detects when an expression changes its value

62 pointsby steenreemalmost 9 years ago

7 comments

primigenusalmost 9 years ago
This looks similar to how Meteor&#x27;s ReactiveVar package, and lower-level Tracker library, works: <a href="https:&#x2F;&#x2F;docs.meteor.com&#x2F;api&#x2F;reactive-var.html" rel="nofollow">https:&#x2F;&#x2F;docs.meteor.com&#x2F;api&#x2F;reactive-var.html</a><p>It&#x27;s certainly helped make building real-time user interfaces that update when the data changes significantly easier in my opinion, because you&#x27;re able to express your intent in code more closely to what you mean rather than having to write all the connecting reactive boilerplate yourself.
评论 #11793135 未加载
maxxxxxalmost 9 years ago
This is neat. I did something similar to this a while ago for WPF databinding and calculated properties in business objects. Does it support INotifyPropertyChanged?<p>One of the problems I found is that a lot of team members don&#x27;t really like to think on that level of abstraction. So it was hard to introduce it team wide and have people keep using it.
评论 #11791776 未加载
sharpercoderalmost 9 years ago
Why use this instead of or with Rx.NET?
评论 #11791897 未加载
评论 #11792686 未加载
评论 #11792150 未加载
评论 #11792138 未加载
评论 #11792658 未加载
sandGorgonalmost 9 years ago
Does anyone know if you can do this in reactjs? It would be awesome to build a excel like spreadsheet with user-input formulas.
评论 #11791942 未加载
评论 #11792473 未加载
评论 #11792637 未加载
评论 #11791835 未加载
评论 #11791839 未加载
评论 #11791983 未加载
nunyabuiznessalmost 9 years ago
If you&#x27;re using JavaScript, MobX [1] is a library available that implements this pattern, which I find a bit easier to use than Meteor&#x27;s Tracker yet also comes with super-performant React bindings.<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;mobxjs&#x2F;mobx" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mobxjs&#x2F;mobx</a>
newtypealmost 9 years ago
I wrote something that does this too! I&#x27;m looking forward to seeing the differences in our implementations :D
评论 #11806201 未加载
polskibusalmost 9 years ago
I wonder how does this compare to Jane&#x27;s Street Incremental library?
评论 #11812847 未加载