Skip to content

304NotModified/TypeScript.NET

 
 

Repository files navigation

TypeScript.NET

##A JavaScript-Friendly .NET Based TypeScript Library

The intention of this project to to allow for the evolution of a .NET based TypeScript (and resultant JavaScript) library. Contributions are welcomed as the .NET Library (meaning it's class structure and classes, not necessarily its content) has a substantial amount of usefulness. With the open sourcing of .NET, TypeScript seems the most logical means to take advantage of it. Typing, generics, classes, modules, inheritance, all are required to make a resultant JavaScript library that takes advantage of this elegance.

Much inspiration comes from TypeScript itself and from libraries like linq.js. There is of course some variance away from .NET's convention (camelCase methods in favor of TitleCase) and some things simply have to be done different. "Extensions" as a feature might be one of the greatest additions to .NET that JavaScript doesn't have a plan for, but it does have some tricky equivalents.

If you have a .NET Library class that you want to see represented in TypeScript, submit it (as an issue), or contribute it yourself! :)

Why should I use this, let alone TypeScript?

  1. It's 100% compatible with JavaScript. Currently TypeScript.NET's target is ES5, so legacy JavaScript won't work. Mainly because of accessors. But going forward, TypeScript is nearly the same as ES6 and you don't have to change your source code to target newer versions. :)

  2. TypeScript is lead by Anders Hejlsberg, the founder of C#. You will feel quite at home in TypeScript if you are a fan of typed languages (like C#), but at the same time you'll get all the flexibility and compatibility of JavaScript.

See http://www.typescriptlang.org/ for more information about the TypeScript language.

Also some more good info on Wikipedia: http://en.wikipedia.org/wiki/TypeScript.

  1. The benefits of intellisense and using an IDE for programming should be obvious especially if you are coding for a larger project. Typed compilation is less forgiving in a good way. You simply make much less mistakes in the long run. TypeScript might be the best answer to JavaScript yet. It's still JavaScript, but with many bonuses including a growing community. :)

  2. Most major IDEs and text editors now support TypeScript either built in, or via a plug-in:

  • Visual Studio
  • VS Code
  • WebStorm (strongly recommended!)
  • Sublime Text
  • Atom

To name a few.

Highlights

  • Linq: Full linq.js library ported to TypeScript with improvements and optimizations. Proper use of IEnumerable with passing unit tests. All the things you love about Linq, but fully typed and JS compatible.
  • Exceptions: There is a growing set of Exceptions like ArgumentNullException, ArgumentOutOfRangeException, etc that are useful in making decisions about how to handle errors using instanceof as if you used multiple catch statements in C#.
  • Collections: Multiple collections types with standard ICollection and IEnumerable interfaces. LinkedList, Queue, Dictionary, and more, all unit tested using a common interface test of ICollection.
  • IDisposable: Additional interfaces, utilities, and classes like DisposableBase that help in providing a cleanup pattern for larger applications that may easily encounter memory leaks. Many of the classes within, including IEnumerator, use IDisposable to ensure releasing of references.
  • DateTime & TimeSpan: The System/Time namespace takes these .NET classes and goes even further to provide useful classes for calculating and expressing dates and time.

Usage

After some time and effort, I've decided that this library should be module based since there are too many files and dependencies that may or may not get used. This is simply the right decision and results in:

  • Only loading what you need, when you need it. You can import the entire TypeScript.NET library in your project and not worry about extra bytes you don't want.
  • If you care about bundling and minification, 'r.js optimizer' is probably the right way to go.
  • The modular structure is not limited to requirejs since it should work perfectly well with JSPM/SystemJS.
  • It is easy to change the module types. :)
  • You can easily recompile the entire library into another dist folder fully minified using gulp.
  • An already minified with source-map version is provided in the min folder

Unit Tests

Simply launch /tests/index.html to see existing unit tests and their status.

Examples

Currently the unit test cover many example usages.

Documentation

Currently improving over time using JSDoc style comments and TypeDoc. (http://typedoc.io/) View Documentation: http://electricessence.github.io/TypeScript.NET/documentation/

Learn, Connect & Evolve

https://www.youtube.com/channel/UCG2QyAgVUEKSMBaC0Fkp5GQ

About

A JavaScript-Friendly .NET Based TypeScript Library

Resources

License

Stars

0 stars

Watchers

1 watching

Forks

Packages

 
 
 

Contributors

Languages

  • TypeScript 69.8%
  • JavaScript 29.2%
  • Other 1.0%