Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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]: