From variables to inheritances to what JavaScript patterns you really need to know, C# MVP Ben Hoelting offers his top tips for C# coders looking to use JavaScript to build complex client-side Web apps.
Mozilla has unveiled an IDE for coding WebAssembly projects that could serve as an alternative to Visual Studio and the Visual Studio Code editor.
If you're wondering how to start integrating TypeScript into your development practices, here's both when to do it and how to do it.
'I think ASP.NET Core is the biggest game changer in the history of Web development using the Microsoft stack.'
Less than two weeks after publishing the TypeScript 2.8 Release Candidate, Microsoft has officially launched it into general availability, bringing conditional types and more.
Blazor, an experimental technology that some believe will save .NET Web coders from "the insanity of JavaScript," has been released by Microsoft in its first public preview.
Microsoft is seeking developer feedback for the new TypeScript 2.8 release candidate, featuring new conditional types and more.
If you need to create a version of a class from several sources or just want to merge default values with a user's input, object spreading solves your problem. JavaScript won't let you do this (yet) but TypeScript will.
C#/XAML for HTML5 from Userware, also called CSHTML5, allows .NET developers to write Web apps in C# and XAML by compiling the files to HTML5 and JavaScript -- or to migrate existing Silverlight apps to the Web.
View components let you create reusable chunks of business logic coupled with a UI in multiple places in your application ... and then let you share that logic across multiple projects. Here's how to invoke them and share them.
ASP.NET Core lets you bundle up business functionality along with its related UI into a view component that you can reuse in throughout your application.
Web workers in TypeScript give you concurrent processing but they can be awkward to debug. However, if you set up your web worker code as just another function, you can simplify debugging (or even build your web worker dynamically at run time).
The January 2018 update of Microsoft's Visual Studio Code editor incorporates the new TypeScript 2.7.1 edition, allowing for quicker fixing of errors in TypeScript and even regular JavaScript files.
Here's how to use web workers in ASP.NET MVC with TypeScript to enable concurrent processing in your client-side code. And, as a bonus, the correct way to think about web workers.
This hands-on tutorial features an example app that displays a list of American cities, allowing the user to see a subset of choices by typing a filtering text value.