Algobook
- The developer's handbook
mode-switch
back-button

Articles about TypeScript

All articles and blogposts about TypeScript. We hope you find what you are looking for and that you will learn something new.
Search for articlesType in keywords or title of the article you are looking for
Dependency injection using decorators in TypeScript-thumbnailDependency injection using decorators in TypeScriptA cool tutorial about how we can use decorators to implement dependency injection in TypeScript, from scratch.
Fri Feb 23 2024
Create a Scheduler annotation in TypeScript-thumbnailCreate a Scheduler annotation in TypeScriptA short (but fun) tutorial on how we can create a scheduler annotation in TypeScript. We will use decorators to implement it.
Fri Feb 23 2024
Implement a web API framework with Decorators in TypeScript-thumbnailImplement a web API framework with Decorators in TypeScriptIn this tutorial, we will create a custom made web framework in TypeScript using Decorators and Express. The result will be a simple version of Nest.js.
Thu Feb 22 2024
Implement a sudoku validator in TypeScript-thumbnailImplement a sudoku validator in TypeScriptIn this tutorial, we will implement a sudoku validator in TypeScript. We will check if a sudoku is valid or not. And as a bonus, we will also implement a 'sudoku generator' that will create a valid sudoku game.
Fri Feb 09 2024
Create a JSON object from a TypeScript class and reverse-thumbnailCreate a JSON object from a TypeScript class and reverseIn this tutorial, we will create a function in our TypeScript class that will generate a JSON representation of our class and then we will reverse it by allowing our class being initialized by a JSON string.
Mon May 29 2023
Setup a TypeScript project from scratch-thumbnailSetup a TypeScript project from scratchIn this tutorial we will show how we can create a project from scratch that are using TypeScript. We will transpile the code into production ready JavaScript code using babel.
Tue Apr 25 2023
Enums in TypeScript-thumbnailEnums in TypeScriptIn this tutorial we will share some example on how enums work in TypeScript and what they can be good for.
Mon Apr 03 2023
Interfaces in TypeScript-thumbnailInterfaces in TypeScriptWhat is interfaces in TypesScript? What are they good for? In this guide, we will share a lot of examples and code snippets on how to use interfaces.
Sun Apr 02 2023
Generics in TypeScript-thumbnailGenerics in TypeScriptIn this post we will take a look at generics in Typescript. Generics are a powerful way of making our code reusable and are widely used in many known languages. Hope you enjoy this post!
Sun Mar 26 2023
Decorators in TypeScript-thumbnailDecorators in TypeScriptIn this post we will dig down in the experimental feature, Decorators, in TypeScript and do some cool examples.
Fri Mar 24 2023
Singleton pattern in TypeScript-thumbnailSingleton pattern in TypeScriptLet's take a look at the Singleton pattern and how to implement it in TypeScript.
Tue Mar 21 2023
Factory pattern in TypeScript-thumbnailFactory pattern in TypeScriptLet's take a look at the Factory pattern and how to implement and use in TypeScript. Follow along and see how you can implement it in your project!
Sun Mar 19 2023
Builder pattern in TypeScript-thumbnailBuilder pattern in TypeScriptWhat is builder pattern? When is it used? Why is it used? In this article, we will dig down in all those questions and after reading it, you will have all the necessary understanding of the builder pattern. Enjoy!
Sat Mar 18 2023