Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

svelte-lanyard

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte-lanyard

🏷️ A Lanyard API wrapper for Svelte

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

svelte-lanyard

A Lanyard API wrapper for Svelte

How to Use

Currently, svelte-lanyard only works clientside, meaning SvelteKit SSR will not work. Learn how to disable SSR on a page-by-page basis here.

By default, svelte-lanyard will attempt to use the WebSocket method of fetching data. See below:

<script lang="ts">
	import { useLanyard } from 'svelte-lanyard';

	const data = useLanyard('182292736790102017');
</script>

{#if $data}
	<p>My Discord username is {$data.discord_user.username}#{$data.discord_user.discriminator}</p>
{:else}
	<p>Waiting to fetch Discord data...</p>
{/if}

If you are building your website for browsers that don't support WebSockets or want to use the REST API instead, you must specify that you want to use the REST API and specify an interval at which to refresh the data:

<script lang="ts">
	import { useLanyard } from 'svelte-lanyard';

	const data = useLanyard('182292736790102017', { type: 'rest', restInterval: 1e3 });
</script>

{#if $data}
	<p>My Discord username is {$data.discord_user.username}#{$data.discord_user.discriminator}</p>
{:else}
	<p>Waiting to fetch Discord data...</p>
{/if}

A demo is also available here.

Keywords

FAQs

Package last updated on 21 Nov 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc