Live data from Hacker News

Fuse – Write cross platform native apps using C# and JavaScript

fusetools.com

21–30 of 43 posts

Re: Fuse – Write cross platform native apps using C# and JavaScript

#21
post #12

Looks interesting. But I can't seem to find any review of it by actual users.

http://www.simppa.fi/blog/

This a really domain specific example. I meant a post of the "Impressions after 3 months of writing apps in Fuse" sort

Re: Fuse – Write cross platform native apps using C# and JavaScript

#22
post #17

Why can't we just write html+css+javascript, and run that on the native platform in an efficient and seamless way? That would seem like a much more welcome approach.

Because html+css was designed for viewing static documents, not unlike Word or PDF. Most of the efficiency problems of the web stem from that fact. The rest stem from the bloat that's required to support every browser in existence from the past 5 years. I still shudder every time I hear the words "this works in ie8, right?" It's like having 5 different Java VMs, each supporting a slightly different undocumented version of the java bytecode spec and then requiring everybody to support all 5 VMs, their quirks and make it all backwards compatible.

Re: Fuse – Write cross platform native apps using C# and JavaScript

#23
post #14

Please don't name it Fuse. Yes, it's a good name, but there is already a rather well known project with that name, plus it's a common household item. You make it unnecessary hard to be found and not con-fuse-d (hah!) by users. I speak from experience: I often have to look up errors/bugs related to root. Root as in "CERN analysis software", not the user. One of the most annoying names ever. (In that sense it's rather…

Exactly. While reading the title, I thought... what a good idea. But what I had in mind, was to use FUSE (Filesystem in USEr space) to locally mount a webservice/API and then use C# native GUIs to do the presentation :)

That's interesting, but I'm not sure what FUSE gets you, except maybe not having to fiddle around with streaming the bytecode yourself? I do like the idea of having a compiled bytecode hosted on a server, streaming that to a local C# VM (.NET?) then having the native GUIs do the presentation. :)

Re: Fuse – Write cross platform native apps using C# and JavaScript

#24
post #11
post #10

Earlier quoted context omitted.

Yes, at least he could reverse the order of words in the subj. The link on the website leads to the API docs - there is no language description. I bet "high-speed" actually means "we removed things we think you don't need". Feels like a Unity3d-inspired afterthought. It does not matter though, the world is moving away from JS. Better support the full C#.

> The world is moving away from JS Which world is this? The world I live in seems to be full speed ahead with JS.

The world where the browser is yet another virtual machine using a bytecode format called WebAssembly, with developers having found memories (or not) from the days when JavaScript was the only option.

Re: Fuse – Write cross platform native apps using C# and JavaScript

#25
This is really intriguing!

What's the relationship between your UX markup language and XAML? Superficially they look similar - DockPanel/ScrollViewer etc (or are these more standardised elsewhere?) - with bindings/triggers being very different, Each being very different.

Is yours a superset? Does it implement full xaml layouts? Do you support xaml grids? Do you have an equivalent to xaml namespacing? Is yours actually xml in the xhtml sense or is it looser?

Is building a Fuse app anything like building an MVVM WPF app? Are you creating .net objects at any point? Is your c# thing (uno) .net?

Re: Fuse – Write cross platform native apps using C# and JavaScript

#26

This is really intriguing! What's the relationship between your UX markup language and XAML? Superficially they look similar - DockPanel/ScrollViewer etc (or are these more standardised elsewhere?) - with bindings/triggers being very different, Each being very different. Is yours a superset? Does it implement full xaml layouts? Do you support xaml grids? Do you have an equivalent to xaml namespacing? Is yours actuall…

Hi, I'm Anders. I work at Fuse :)

UX markup is not directly related to XAML, allthough it is based on much of the same principles. UX markup is designed to be much less verbose and more compact. It is not very strict Xml, it prefers expressiveness over Xml conformance. Xml namespacing is supported though :)

UX with the Fuse libraries offer pretty much the same layouts as xaml, including Grid.

Uno is not .NET based at runtime. Uno is translated to C++ and runs as native code with no VM.

Re: Fuse – Write cross platform native apps using C# and JavaScript

#27
post #10
post #8

Javascript, javascript, javascript... So, where's the C#? > Uno, a light-weight, high speed dialect of C#. Ah! Here it is. A light-weight dialect, you say. Similar to Unity3d's old Mono fork that hasn't been updated since .Net 2.5, and still crashes when you attempt to use some of language features (like named parameters)?

Yes, at least he could reverse the order of words in the subj. The link on the website leads to the API docs - there is no language description. I bet "high-speed" actually means "we removed things we think you don't need". Feels like a Unity3d-inspired afterthought. It does not matter though, the world is moving away from JS. Better support the full C#.

> the world is moving away from JS

I would love to see this happening, but can you please provide some proof for that bold statement?

Re: Fuse – Write cross platform native apps using C# and JavaScript

#28
Some brief questions:

* Will you open-source Uno?

* Will you have a freemium model? (Free for opensource apps.)

* Will you change the name like others have suggested?

* Will you consider a no-JS model to develop?

If all of the answers are YES to the above, then please sign me up for the beta.

Re: Fuse – Write cross platform native apps using C# and JavaScript

#29
post #28

Some brief questions: * Will you open-source Uno? * Will you have a freemium model? (Free for opensource apps.) * Will you change the name like others have suggested? * Will you consider a no-JS model to develop? If all of the answers are YES to the above, then please sign me up for the beta.

* Will you open-source Uno?

Very likely - but details/license TBA.

* Will you have a freemium model? (Free for opensource apps.)

Yes, there will always be a free way of using Fuse and Uno.

* Will you change the name like others have suggested?

No :)

* Will you consider a no-JS model to develop?

Yup. We have that already. You can use Fuse with just Uno if you like, JS is an optional component. However, our main focus is on creating a very rapid and streamlined development workflow with UX+JS.

Best regards, Anders from Fuse

Re: Fuse – Write cross platform native apps using C# and JavaScript

#30
post #29
post #28

Some brief questions: * Will you open-source Uno? * Will you have a freemium model? (Free for opensource apps.) * Will you change the name like others have suggested? * Will you consider a no-JS model to develop? If all of the answers are YES to the above, then please sign me up for the beta.

* Will you open-source Uno? Very likely - but details/license TBA. * Will you have a freemium model? (Free for opensource apps.) Yes, there will always be a free way of using Fuse and Uno. * Will you change the name like others have suggested? No :) * Will you consider a no-JS model to develop? Yup. We have that already. You can use Fuse with just Uno if you like, JS is an optional component. However, our main focus…

OP here - I don't work for Fuse and I've got a related question. Will the Fuse libraries be open-sourced too?
Post reply on HN