Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrward/typescript-addin
TypeScript addin for MonoDevelop and Xamarin Studio
https://github.com/mrward/typescript-addin
monodevelop typescript xamarin-studio
Last synced: about 9 hours ago
JSON representation
TypeScript addin for MonoDevelop and Xamarin Studio
- Host: GitHub
- URL: https://github.com/mrward/typescript-addin
- Owner: mrward
- License: mit
- Created: 2013-03-30T15:08:15.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-12-29T18:12:09.000Z (almost 8 years ago)
- Last Synced: 2024-10-31T14:50:21.673Z (7 days ago)
- Topics: monodevelop, typescript, xamarin-studio
- Language: JavaScript
- Homepage:
- Size: 35.8 MB
- Stars: 29
- Watchers: 6
- Forks: 9
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# TypeScript Addin for MonoDevelop and Xamarin Studio 5
This addin provides [TypeScript](http://www.typescriptlang.org/) support in MonoDevelop and Xamarin Studio 5.
MonoDevelop and Xamarin Studio 6 are not supported.
## Features
1. Syntax highlighting for TypeScript files (.ts)
2. TypeScript file template.
3. Code completion - using the TypeScript language services.
4. Code folding.
5. Rename refactoring.
6. Generate JavaScript file when saving TypeScript file or building the project.
7. Configurable TypeScript compiler options in Tools Options dialog.
8. Find References.
9. Go to Definition.For more detailed look at the features please read the [TypeScript Support in Xamarin Studio blog post](http://lastexitcode.com/blog/2015/04/01/TypeScriptSupportInXamarinStudio/)
## Requirements
* MonoDevelop 5.0 or Xamarin Studio 5.0
## InstallationThe addin is available from the [MonoDevelop addin repository](http://addins.monodevelop.com/). To install the addin:
* Open the **Add-in Manager** dialog.
* Select the **Gallery** tab.
* Select **Xamarin Studio Add-in Repository (Alpha channel)** from the drop down list.
* Expand **Web Development**.
* Select **TypeScript**.
* Click the **Refresh** button if the addin is not visible.
* Click **Install...** to install the addin.## Dependencies
1. [TypeScript](https://github.com/microsoft/typescript) - The TypeScript language services are used to provide code completion.
2. [V8.NET](http://v8dotnet.codeplex.com/) - A library that hosts Google's V8 JavaScript engine and allows .NET objects to be used directly from JavaScript.
3. [Json.NET](http://json.codeplex.com/) - Json library for .NET created by [James Newton-King](http://james.newtonking.com/).## How it works
The addin glues together the TypeScript language services and MonoDevelop using [V8.NET](http://v8dotnet.codeplex.com/) as the bridge between them. JavaScript code is executed by V8 and uses the TypeScript language services to get information about the TypeScript files in the project. This information is delivered to the C# host class which interacts with MonoDevelop.