dotnetomaniak.pl - Najnowsze artykuły o .NET w dziale Web - Strona 10

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?

Tagi: frontend, pwa
Dziel się z innymi:
Jak wykorzystać tryb offline do zwiększenia możliwości twojej aplikacji - PoznajProgramowanie.pl

Web 2451 dni, 10 godzin, 18 minut temu AdrianBystrek 135 źrodło rozwiń

In this post I'm describing how easy is to setup simple deployment from GitHub to Azure Function App.

Źródło: radblog.pl
Dziel się z innymi:
Serverless – Simple deploy [3.1] | RadBlog

Web 2451 dni, 10 godzin, 18 minut temu Radosław Maziarka 45 źrodło rozwiń

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...

Źródło: foreverframe.net
Dziel się z innymi:
Dealing with failures using custom exceptions and ASP.NET Core middleware - Forever F[r]ame

Web 2451 dni, 10 godzin, 18 minut temu dpawlukiewicz 59 źrodło rozwiń

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...

Źródło: www.dsibinski.pl
Dziel się z innymi:
Entity Framework Core – database initialization with Unit Test – Dawid’s blog

Web 2455 dni, 7 godzin, 55 minut temu dsibinski 95 źrodło rozwiń

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.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] WebSocket per-message compression in ASP.NET Core

Web 2461 dni, 5 godzin, 39 minut temu tpeczek 71 źrodło rozwiń

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?

Progresywne portfolio - wprowadzenie do Progressive Web Apps - PoznajProgramowanie.pl

Web 2464 dni, 4 godziny, 49 minut temu AdrianBystrek 183 źrodło rozwiń

I continue my Serverless journey with post about running local environment.

Źródło: radblog.pl
Dziel się z innymi:
Serverless – Local environment [2] | RadBlog

Web 2465 dni, 12 godzin, 34 minuty temu Radosław Maziarka 55 źrodło rozwiń

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.

[MCSD 70-480] HTML5 API – Wildpost

Web 2471 dni, 13 godzin, 46 minut temu wildcat89 141 źrodło rozwiń

This post focuses on Cross-Site WebSocket Hijacking vulnerability and how to protect against it.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Preventing Cross-Site WebSocket Hijacking in ASP.NET Core

Web 2474 dni, 4 godziny, 44 minuty temu tpeczek 54 źrodło rozwiń

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:   ...

Źródło: foreverframe.net
Dziel się z innymi:
Running Aurelia tests inside Bitbucket pipelines - Forever F[r]ame

Web 2479 dni, 20 godzin, 26 minut temu dpawlukiewicz 29 źrodło rozwiń

/ 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 – ...

Źródło: szumiato.pl
Dziel się z innymi:
ASP.NET Core JavaScriptServices – problem with EventSource MIME type | Kuba on IT

Web 2483 dni, 3 godziny, 8 minut temu Jakub Szumiato 80 źrodło rozwiń

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

Źródło: jj09.net
Dziel się z innymi:
Quick intro to web development with TypeScript, webpack and Aurelia

Web 2483 dni, 3 godziny, 8 minut temu jj09 102 źrodło rozwiń

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

TypeLITE: generator C# => TypeScript | Show me the code

Web 2483 dni, 3 godziny, 8 minut temu https://krzysztofmorcinek.w... 201 źrodło rozwiń

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.

[EN] WebSocket subprotocol negotiation in ASP.NET Core

Web 2490 dni, 5 godzin, 47 minut temu tpeczek 80 źrodło rozwiń

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

Tagi: TypeScript
Źródło: blog.soltysiak.it
Dziel się z innymi:
String enums w TypeScript – Soltys Blog

Web 2491 dni, 20 godzin, 6 minut temu Paweł Sołtysiak 102 źrodło rozwiń

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.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Feeding Server Timing API from ASP.NET Core

Web 2504 dni, 3 godziny, 5 minut temu tpeczek 53 źrodło rozwiń

Pakiet nuget z kilkoma klasami, które ułatwiają życie przy pracy z aplikacjami ASP.NET Core

Źródło: devblog.dymel.pl
Dziel się z innymi:
ASP.NET Core Utils - nuget package available

Web 2512 dni, 16 godzin, 30 minut temu Michal Dymel 174 źrodło rozwiń

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ą ?

Źródło: mickl.net
Dziel się z innymi:
Atrybuty w C# vs Dekoratory w TypeScript

Web 2528 dni, 7 godzin, 15 minut temu mickl 175 źrodło rozwiń

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.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Preparing for Chrome's Certificate Transparency policy - Expect-CT with reporting in ASP.​NET Core

Web 2541 dni, 18 godzin, 14 minut temu tpeczek 33 źrodło rozwiń

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...

Źródło: tpodolak.com
Dziel się z innymi:
[EN] ASP.NET Core - API versioning by convention

Web 2542 dni, 16 godzin, 45 minut temu nocturn 76 źrodło rozwiń

1 2... 8 9 10 11 12 13... 52 53

Najaktywniejsi w tym miesiącu