Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/woctezuma/steam-svelte-autocomplete
Auto-complete Steam game names with Svelte.
https://github.com/woctezuma/steam-svelte-autocomplete
autocomplete dropdown games steam svelte
Last synced: 26 days ago
JSON representation
Auto-complete Steam game names with Svelte.
- Host: GitHub
- URL: https://github.com/woctezuma/steam-svelte-autocomplete
- Owner: woctezuma
- License: mit
- Created: 2021-01-20T11:10:55.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-30T18:27:23.000Z (almost 4 years ago)
- Last Synced: 2023-03-11T16:58:06.390Z (almost 2 years ago)
- Topics: autocomplete, dropdown, games, steam, svelte
- Language: JavaScript
- Homepage: https://woctezuma.github.io/steam-svelte-autocomplete/index.html
- Size: 275 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Steam Svelte Autocomplete
Auto-complete Steam game names with Svelte.
## Usage
```bash
npm install
npm run dev
```## Deployment
Read the short documentation about [Github Pages][gh-pages].
Namely, you will have to:
- create a branch `gh-pages`,
- set it for deployment in the *settings* of your repository via Github's website.Then:
```bash
npm install gh-pages --save-dev
```And edit `package.json` to have the following, as in [this example][deployment-example]:
```json
"homepage": "https://woctezuma.github.io/",
"scripts": {
"predeploy": "npm run build",
"deploy": "npx gh-pages -d public/"
}
```Finally:
```
npm run deploy
```## References
- data: [`steam-store-snapshots`][steam-data]
- component: [`simple-svelte-autocomplete`][svelte-component], with [a demo][svelte-demo][gh-pages]:
[deployment-example]:
[steam-data]:
[svelte-component]:
[svelte-demo]: