I'm wondering how is it possible to transform the TypeScript into JavaScript in a cross platform manner. I'm aware about availability of node package manager for typescript, but are there any other alternatives which can be used on the server side?
|
|
Maybe it's not the answer you want, but as everybody mentioned, the compiler is a JS file, so, your options are the options of executing a JS file. In Windows, there are 2 obvious ones, Node, and Windows Script Host. You know about node already, the other option is a component that comes with all versions of Windows (I think), you can do it like this:
You can see all compiler options by just:
On Linux I assume you should be able to use (in addition to node):
If you are looking for something like I remember reading somewhere that the I/O is optimized for Node and Windows Script Host, so, if you have problems with options, you'll probably end up with Node if seeking platform independence. |
|||||
|
|
The TypeScript compiler is built in TypeScript, and hence is available as a JS file (tsc.js) that can be run using just about any ES3-compiliant VM or JS implementation. That said, the compiler's current file I/O infrastructure only supports Node and Windows Scripting Host file APIs. If you'd like to recommend for support for another environment, feel free to reach out to the team at our CodePlex site - http://typescript.codeplex.com |
|||||||||||||||
|
|
Concretely, on the server (assuming your server has Node.js available), you'd simply run:
You can run that command without any input filenames to see the command-line help for tsc.js. |
|||
|
|
|
To compile ts -> js: node is available for all common platforms, so I fail to see why you'd want to have a tsc.java when you already have a tsc.js. Installing node is no big deal. In fact, it's easier than Java. Once you have your proj.js file, you can then copy it to which ever deployment platform you wish to use. From my point of view, JavaScript - or more accurately ECMAScript is an alternative to Java. So I'm happy that I don't have to wrangle JVM etc to use the tool. But if you prefer Java, then why even bother with JS? |
|||||||
|
|
If it's Java that you need to target then you could run tsc.js with the Rhino engine as part of your build process. |
|||
|
|
|
I have a project which compiles Typescript to Javascript in Java: https://github.com/martypitt/typescript4j As discussed in other answers, this makes use of Rhino, so has no dependencies on Here's an example:
I use it in another project - 'Bakehouse' to perform on-the-fly compilation of typescript resources within Spring environments |
|||||||
|
|
I've been playing around with this, and can compile TypeScript with javascript with the following code:
It's not exactly ideal though. I'm trying to get something running so I can convert TypeScript to JS within C# (using Javascript .NET), but i'm getting a stack overflow on the ts.addUnit call. |
|||
|
|
|
SublimeText2 Trick You can transpile typescript to javascript directly from SublimeText2 (you need node) : Create a
then, now, you can transpile your code with ctrl+B or cmd+B |
|||
|
|

