Top-level await in TypeScript 3.8
New FeaturesTypeScript 3.8 introduces a new functionality which is called top-level await. It allows developers to use the await
keyword without a surrounding async
function at the top level of a module.
TypeScript 3.8 introduces a new functionality which is called top-level await. It allows developers to use the await
keyword without a surrounding async
function at the top level of a module.
Learn how to get the milliseconds of a specified date in your desired timezone.
Continue reading →Configuring code coverage with TypeScript and Karma to get coverage reports for code running in web browsers.
Continue reading →Overview of main concepts in Electron 4 applications.
Continue reading →Learn how to include all source files for code coverage reporting in an Electron app. In the following tutorial we will create TypeScript code coverage from Electron’s main and renderer process.
Continue reading →The best way to get started on the Heroku polyglot platform is to follow their fantastic introduction. It’s also worth reading about their supported environments, deployment tasks and European deployment region. The second best advice is to follow our quick setup guide.
Continue reading →There are many libraries to build CLI tools for Node.js like optimist, minimist, yargs, Caporal.js and commander to name just a few. In the following article Benny gives you an overview of his favorites.
Continue reading →Sometimes you want to define a custom property on the window
namespace. This can be done by declaring it as a global property.
Write tests for Electron using TypeScript and mocha. The following tutorial will show you how to create a test setup.
Continue reading →