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)
- Host: GitHub
- URL: https://github.com/potlitel/blazorgenericautocomplete
- Owner: potlitel
- Created: 2023-11-01T18:31:23.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-02T13:03:13.000Z (over 2 years ago)
- Last Synced: 2025-03-05T20:38:41.211Z (over 1 year ago)
- Topics: autocomplete, autocomplete-search, blazor, blazor-webassembly, generic-components
- Language: HTML
- Homepage:
- Size: 402 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BlazorGenericAutoComplete

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