Niedawno pisaliśmy na naszym blogu o PWA, czyli nowej fali aplikacji webowych które sposobem działania przypominają to, co znamy z natywnych aplikacji mobilnych. Jednym z najczęściej przewijających się punktów dotyczących PWA jest wsparcie dla trybu offline i odporność takiej aplikacji na wahania sieci. Brzmi nieźle, ale jakie korzyści w praktyce możemy zaoferować naszym użytkownikom dodając do naszej aplikacji możliwość korzystania z niej bez połączenia z Internetem?
In this post I'm describing how easy is to setup simple deployment from GitHub to Azure Function App.
There are many different approaches to deal with failures in web apps. One of the most common is returning a result... The idea is simple. If the method fails because of validation or something else, the result tells it. The only thing we need is ifstatement an...
Written by Dawid Sibińskion I’ve recently been presented a concept of initializing the database (creating or re-creating it) with Unit Test method. Initially I thought it’s a non-sense, but after a while of taking a deeper look… The method of initializing the database I mentioned was used with Entity Framework Core in ASP.NET Core project, where Code First database creation approach was used. As you know, this approach implies that we create models (classes) representing our database entities i...
A number of browsers support WebSocket per-message compression out of the box. This post shows how it can be used in ASP.NET Core.
Progressive Web Apps to kolejny etap w rozwoju współczesnych stron internetowych i aplikacji webowych. Dzięki najnowszym funkcjonalnościom przeglądarek internetowych możemy przenieść wrażenia do tej pory zarezerwowane tylko dla mobilnych aplikacji natywnych w świat projektów które miały być dostępne jedynie za pośrednictwem przeglądarki internetowej. Czym są PWA i jak dostosować istniejący projekt do tego standardu?
I continue my Serverless journey with post about running local environment.
Dzisiaj kilka słów na temat HTMLowych API, które swego czasu szumnie były opisywane, a dzisiaj już widać, że nie do końca się to wszystko sprawdziło i z trzech które dzisiaj opiszę właściwie tylko jedno jest regularnie przez programistów używane.
This post focuses on Cross-Site WebSocket Hijacking vulnerability and how to protect against it.
Inspired by Piotr’s article I decided to play a little with the Bitbucket as an alternative to the GitHub. The thing that I really like about it, is that there’s no need to use any 3rd part CI tool such as TravisCI since Bitbucket offers its own build pipeline. Of course, I wanted to test it as soon as possible, so I created very simple Aurelia application using its CLI and I pushed my changes. My basic pipeline file (with the *.yml extension) presented as follows: ...
/ Kuba Today I wanted to share with you a solution to the issue I faced recently with my ASP.NET Core/Angular2 application. The website was created based on the templates provided by the ASP.NET team (see Steven Sanderson blog entry for more), it’s using Hot Module Replacement middleware to release developer from the need to rebuild the website and update the website’s code when working on it. The workflow becomes trivial: you save the code in the IDE, and webpack middleware takes care of everything – ...
Earlier this month I spoke at SeattleJS meetup. I love this meetup! People attending it are awesome! Thank you Jeremy Foster for inviting me to speak! If you are living in Seattle area you should definitely check it out! I gave fast-paced 30 mins overview of TypeScript. I showed a sample app that is taking advantage of webpack for continuous compilation, bundling and minification. I also did quick demo of Aurelia Framework
W projekcie Webowym z bogatą logiką FrontEndową zawsze w pewnym momencie stajemy przed problemem synchronizacji klas, które mamy w C# z tymi po stronie FE. Jednym z ułatwień jest korzystanie z TypeScript, który udostępnia silne typowanie po stronie FE. Tutaj na scenę wchodzi TypeLITE
WebSocket is the closest API to a network socket available in browser. This makes it probably the most flexible transport which a web application can use. That flexibility comes at price. From WebSocket perspective the message content is opaque. This means that client and server must agree on application subprotocol. WebSocket provides a simple subprotocol negotiation mechanism which helps in that task.
Jak typ danych może wyrazić dokładnie 1000 słów? enum String. String może zawierać wszystkie słowa świata. Kiedy chcemy ograniczyć się tylko do kilku w TypeScirpt mogliśmy wykorzystać union types
There is a number of Web APIs which allow measuring performance of web applications. The youngest member of that family is Server Timing API which allows communicating the server performance metrics to the client. This article shows how this API can be used in ASP.NET Core.
Pakiet nuget z kilkoma klasami, które ułatwiają życie przy pracy z aplikacjami ASP.NET Core
TypeScript daje nam możliwość dekorowania kodu podobną do tej, którą mamy w C# w postaci atrybutów. Czy oba mechanizmy są tym samym, czy jednak czymś się różnią ?
Google's Certificate Transparency project is an open framework for monitoring and auditing SSL certificates. Starting April 2018 Chrome will require compliance with Certificate Transparency. Expect-CT Extension for HTTP will introduce a way to test the Certificate Transparency policy and this article shows how it can be used once it arrives.
If you were looking for information about API versioning support for ASP.NET Core you’ve probably come across Microsoft.AspNetCore.Mvc.Versioning library. The library itself allows you to set up versioning in a couple of different ways, for instance, via attributes or via manual convention setup. All of this options are really nice but unfortunately, they have one significant drawback, namely, you have to set them up manually. As I tend to forget about th...