분류 전체보기 (484) 썸네일형 리스트형 API - Web Push Push API allows application to get notifications References Push API - Web APIs | MDN The Push API gives web applications the ability to receive messages pushed to them from a server, whether or not the web app is in the foreground, or even currently loaded, on a user agent. This lets developers deliver asynchronous notifications and update developer.mozilla.org HTML 삽입 미리보기할 수 없는 소스 HTML 삽입 미리보.. Client Side Storage - Indexed DB indexed db is a client storage. It is similar to web storage but can save more data than web storage. Think of indexed db as a database where you can create, add, edit, and delete. For every tasks, you have to connect to the database first. Create open(“dbName”, version): this opens a database or creates one if not exists. The schema of a database differs by the version. const req = window.index.. Client Side Storage - Web Storage Web storage API allows to store data on user’s browser. Web storage is more secure as it dose not send data to a server and has larger storage limit than cookie. HTML has two web storage objects: localStorage: No expiry date for the data stored sessionStorage: Data lost when session (browser) closed How to Use? We can use ‘setItem(‘key’, ‘value’) to store data, getItem(‘key’) for get stored data.. Angular Library - Angular Schematics Schematic is a template based code editor and Angular CLI, by default, comes with Schematic. Schematic is like a description that provides necessary information and options when addin dependencies. It is under @schematics/angular and it automatically rund when 'ng generate' or 'ng add' commands are used Schematics add schematic Uses 'ng add' to add libraries. Unlike when installing dependencies .. Adding Configurations When Creating a Database Let's see how we can add additional validations using Entity Framework Creating an Application How to create .NET web-API Setting up development tools When working with .NET, we need tools to create a web application. We can download them in the link below.다. .NET | Free. Cross-platform. Open Source. (microsoft.com) .NET | Free. Cross-platform. Open Source. .NET is a develo jin-co.tistory.com Co.. Application Architecture - Repository It is a good practice to separate business logic and data handling. Entity Framework provides an MVC pattern to separate them. However, as the size of a project grows, adding data handling codes directly in the controller file creates duplicate codes and becomes hard to test. A repository pattern is a design pattern that reduces duplication and makes testing easier. Let's see how we can implemen.. Progressive Web App Progressive web app is a combination of web and native app. It allows users to use the pros of the two platforms and even work when there is no network available using service worker, cache, web storate, indexedDB. What make an application Progressive web app can defined as below: Responsive (Can be rendered on both web and mobile screens smoothly) Can work independently from the network. Able t.. Service Worker The Service worker is a script that runs on the browser. So whenever there is an out bound request to the server from the browser the service worker checks a cache history of the request and deals with the request by itself using the cache history. The service worker runs even when a user closes the tap meaning that it can recognize the next request form the users when they visit again. This all.. 이전 1 ··· 21 22 23 24 25 26 27 ··· 61 다음