Is it possible to use websharper as a drop-in replacement for javascript without the additional complexity of sitelets or ASP.NET?
For example, can I compile the following websharper library to a .js file and call the hello() function from within a javascript script block in my html?
namespace WebSharperLib
open IntelliFactory.WebSharper
module HelloWorld =
[<JavaScript>]
let hello () =
IntelliFactory.WebSharper.JavaScript.Alert("Hello World")