Given the fact that TypeScript is Open Source, is this Web-Based IDE also available as a tool that can be downloaded anywhere?
I\'m developing a web application in which
I've played with TypeScript Compiler API both in node.js and in the browser. Also with monaco-editor:
yes, TypeScript and monaco editor look good, enjoy!
There is an implementation of it which is open source:
https://github.com/jbaron/typescript-playground-on-ace
I am using CATS, and I really like it because of two things:
THe last is the feature I like the most, because I don't have to install anything (at least, under Windows), and you don't need Visual Studio (it's around 9 Gb and two hours installing).
The TypeScript Playground is a nice editor, but if you need to test small scripts, or want to try something that can be done only in one file!
As TypeScript's playground source code has not been made available until now, I've published an implementation—also based on the Monaco Editor—with some enhancements regarding compiler options and code execution:
GitHub Repository: https://github.com/fabiandev/typescript-playground
Online Playground: https://fabiandev.github.io/typescript-playground/
Koding provides a VM with Root so you can install whatever tools you need, and in this case, TypeScript via npm install -g typescript
.
VM Domain and Apache is included, so previewing your work in your browser is also easy :)
Update 2017: The Monaco editor used in the TypeScript Playground has been made available on GitHub.
You can also take a look at Visual Studio Code, for a more out-of-browser experience.
There is also a TypeScript editor build on the ACE Editor, which is also on GitHub.