Tagged Questions

2
votes
4answers
114 views

Pushing javascript too hard with Script# and javascript?

So I have been playing around with a home project that includes a lot of js. I having been using Script# to write my own library etc. Personally I wouldn't write a lot of js if I didn't have a tool …
4
votes
8answers
456 views

Should I use ScriptSharp

Hi, I am developing my first ASP.NET MVC application and I beleive that Script# can help me a lot. But it cannot find the resource necessary to support my development. I could not find The codeplex …
0
votes
2answers
38 views

Script# preprocessor directives?

Hi, does anyone know the preprocessor directives that are available for use in the script.jst file. I am trying to write the filename of the generated js file to the generated .js file. ie. script.js …
3
votes
3answers
218 views

Can I use GWT (or Script#) to write individual functions in Java (or C#) and compile them to JavaScript?

I understand the purpose of GWT, but I'm wondering if I can use it to compile a few functions from Java to JavaScript just to make sure that I don't have to maintain the same code in two different …
4
votes
8answers
411 views

Why Haven’t GWT- and Script#-style Frameworks Become Dominant?

With GWT, we can write code in Java and have it translated to JavaScript code. With Script#, we can write code in C# and have it translated to JavaScript code. It sounds GWT and Script# will save web …
1
vote
1answer
182 views

How to generate minified javascript with Script#?

I am testing Script# and its manual tells me that it has a "Release" mode, where the code is minified for performance. But I couldn't find how to enter this mode. Anyone knows? Update BenS has found …
0
votes
0answers
57 views

Has anyone used Script#?

The Script# product looks promising though I'd have to admit I've struggled to the the Hello World application working successfully. There have been no new releases over the last year, perhaps the …
4
votes
3answers
263 views

Sharing JavaScript code between .NET desktop and browser

I have a set of core, complicated JavaScript data structures/classes that I'd like to be able to use both in the browser as JavaScript and run on the desktop with .NET 3.5. Is it possible to compile …