The key feature is now part of Svelte since v3.28.0 (see issue).
This package has consequently no reason to exist anymore and won't been maintained.
The new syntax is Svelte is the following:
{#key expression}...{/key}
Emulates React's key
feature: force some content (e.g. some component) to be recreated when the value of the key changes.
This is based on the hack described in this StackOverflow answer (or this comment).
This feature might make it into Svelte eventually. Progress can be tracked in this issue.
Npm:
npm install --dev svelte-key
Yarn:
yarn add --dev svelte-key
Note: the package only publishes the component as source, because it doesn't make sense to use this standalone, outside of another Svelte component (heck! you can't even pass slots to standalone components currently).
<script>
import Identity from 'svelte-key'
let i = 0
</script>
<p>Change input value & click button</p>
<Identity key={i}>
<input />
</Identity>
<button on:click={() => {i++}}>
{i}
</button>