Free tools and resources to develop Blazor Apps

Visual Studio Community Edition is a free IDE tool from Microsoft.

Syncfusion Community Edition.  +800+ Controls and frameworks to develop .net applications.

Download links below.

Information about WEBASSEMBLY:  https://webassembly.org/

IndexedDB javascript wrapper

 

Downlowad  Dexie.js from  https://dexie.org/

Example:

/*
|----------------------------|
| Declare your database |
|----------------------------|
*/

const db = new Dexie(‘MyDatabase’);

 

// Declare tables, IDs and indexes


db.version(1).stores({
friends: '++id, name, age'

});