Back to "إنشاء شبكة معلوماتك عن طريق شبكة الإنترنت (PWA)"

This is a viewer only at the moment see the article on how this works.

To update the preview hit Ctrl-Alt-R (or ⌘-Alt-R on Mac) or Enter to refresh. The Save icon lets you save the markdown file to disk

This is a preview from the server running through my markdig pipeline

ASP.NET

إنشاء شبكة معلوماتك عن طريق شبكة الإنترنت (PWA)

Friday, 13 September 2024

في هذه المقالة، سأريكم كيف تجعلون موقعكم على شبكة الإنترنت ASP.NET الأساسي هو PWA (تطبيق على شبكة الإنترنت).

النفقات قبل الاحتياجات

انها حقاً بسيطة جداً انظر https://github.com/medskristensen/WebEssentials.AspNetscore.Serviviceworker/tree/master

SPSP.net

تثبيت الحزمة النوتة

dotnet add package WebEssentials.AspNetCore.PWA

في برنامجك.cs يُضاف ما يلي:

builder.Services.AddProgressiveWebApp();

ثم إنشاء بعض الافاكتونات التي تطابق الأحجام تحت هنا هنا هو أداة يمكنك استخدامها لخلقها. هذه يمكن أن تكون حقاً أي أي أي أي أيقونة (استخدمت أيقونة رمزية)

Save these in your wwrroot folder as android-chrome-192x192.png and android-chrome-512x512.png (in the example below)

ثم تحتاج إلى بيان.

{
  "name": "mostlylucid",
  "short_name": "mostlylucid",
  "description": "The web site for mostlylucid limited",
  "icons": [
    {
      "src": "/android-chrome-192x192.png",
      "sizes": "192x192"
    },
    {
      "src": "/android-chrome-512x512.png",
      "sizes": "512x512"
    }
  ],
  "display": "standalone",
  "start_url": "/"
}
logo

©2024 Scott Galloway