-
TypeScript: An Introduction
Last updated: Wednesday, August 31, 2022
Published in: CODE Magazine: 2022 - July/August
Everyone’s using JavaScript. That’s terrific, but the fact that it is weakly typed causes limitations, especially for large applications. Shawn shows you how to overcome those limitations using TypeScript. For example, TypeScript adds type safety functionality so type checking is done at compilation time.
-
Building a VS Code Extension Using Vue.js
Last updated: Wednesday, August 31, 2022
Published in: CODE Magazine: 2021 - July/August
Most of the core functionalities in VS Code are extensions, and you can extend almost any feature, from color themes, to activity bars, to displaying data. Bilal gives an overview of how extensions work and some cool ideas for what to do with them.
-
Deploy a Real-World ExpressJS TypeScript Application Using Containers
Last updated: Wednesday, August 31, 2022
Published in: CODE Magazine: 2021 - March/April
Learn to deploy a real-world ExpressJS TypeScript application using containerization. Deploy both the application and the database as two separate containers.
-
A Real World ExpressJS and TypeScript Application
Last updated: Wednesday, August 31, 2022
Published in: CODE Magazine: 2021 - January/February
Sahil builds onto his earlier ExpressJS and TypeScript article and gets the sample application (a To-Do app that saves data to a database) up and running. He uses Bootstrap for new pages, adds support for client-side scripting using TypeScript and then adds Vue.js into the project.
-
A Simple ExpressJS and TypeScript Project
Last updated: Wednesday, August 31, 2022
Published in: CODE Magazine: 2020 - November/December
Sahil walks you through a simple ExpressJS-based Web app using TypeScript to help you get started using these great technologies together.
-
Identify Voices with Microsoft Cognitive Services
Last updated: Wednesday, April 21, 2021
Published in: CODE Magazine: 2018 - July/August
In this next installment of his exploration into artificial intelligence, Sahil explores Microsoft Cognitive Services’ ability to recognize voices from a thirty-second sample.
-
Cordova Apps with Angular and TypeScript
Last updated: Wednesday, May 26, 2021
Published in: CODE Magazine: 2017 - January/February
Sahil gives some excellent suggestions for dealing with a multiple-platform world using Apache Cordova and a single code base. He’s going to debug with TypeScript and sourcemaps, so you’ll (nearly) be a Cordova expert!
-
TypeScript: The Best Way to Write JavaScript
Last updated: Tuesday, June 29, 2021
Published in: CODE Magazine: 2015 - November/December
In this continuation of his series, Sahil focuses on TypeScript and why it’s mandatory if you want to write good, reliable code in JavaScript.
-
Simplest Thing Possible: Introduction to TypeScript
Last updated: Wednesday, August 31, 2022
Published in: CODE Magazine: 2013 - May/June
TypeScript is a new Microsoft offering that seeks to change the way we write JavaScript. As the name implies, TypeScript associates a strongly typed layer in conjunction with JavaScript. TypeScript also associates an object-oriented layer with JavaScript.