An open API service indexing awesome lists of open source software.

https://github.com/potlitel/blazorgenericautocomplete

Practical exercise of the following link : A reusable generic autocomplete component for Blazor (https://www.mikesdotnetting.com/article/363/a-reusable-generic-autocomplete-component-for-blazor)
https://github.com/potlitel/blazorgenericautocomplete

autocomplete autocomplete-search blazor blazor-webassembly generic-components

Last synced: about 1 month ago
JSON representation

Practical exercise of the following link : A reusable generic autocomplete component for Blazor (https://www.mikesdotnetting.com/article/363/a-reusable-generic-autocomplete-component-for-blazor)

Awesome Lists containing this project

README

          

# BlazorGenericAutoComplete

Logo

## Steps to use

1. Clone the repo
```sh
git clone https://github.com/potlitel/BlazorGenericAutoComplete
```
2. Install json-server NPM package
```sh
npm i json-server
```
3. Go to the data folder and run the following command

```js
json-server --watch db.json
```

By executing this command we start a backend server with the data that we will use in our Blazor App.

You can start JSON Server on other ports with the --port flag:

```js
json-server --watch db.json --port 3004
```

4. Finally, run the blazor app.