Few days ago, “Microsoft” released the version 2.1 of “.NET Core” and along with it the first version of “SignalR Core“. We are going to see how to create an ASP.NET Core 2.1 web application and use “TypeScript” and “WebPack” to bundle the front end. To be sure to understand what’s below, ensure that you […]
Using TypeScript with Webpack
“TypeScript” is a great language that powers up “JavaScript” and in this post, we’ll see how to ingrate it with “webpack”. If you’re not comfortable with “webpack”, consider reading this post. Start by initializing our web application: yarn init -y Then, install the following packages: yarn add webpack webpack-cli typescript ts-loader -D “webpack” and “webpack-cli” […]
Getting started with webpack 4
Face it, it’s over… It’s over the time when you just added a simple “script” element to your page in order to use a library, it does not work like that anymore… Now your application probably uses a “JavaScript” framework (Angular, React, etc…), it also plays with DOM (jQuery) and as you’re a cool guy, […]