v0.4.1
Installation
This guide will help you install the Svelte Reactive Table library in your Svelte project.
Prerequisites
- Node.js and any package manager (
npm
,pnpm
,yarn
, orbun
) - Svelte version
5.0.0
or higher
Installing the Package
npm install svelte-reactive-table
pnpm add svelte-reactive-table
yarn add svelte-reactive-table
bun add svelte-reactive-table
Basic Import
Once installed, you can import the library in your Svelte files:
<script lang="ts">
import { reactiveTable } from 'svelte-reactive-table';
// Optional pagination functionality
import { reactivePagination } from 'svelte-reactive-table';
</script>
Next Steps
Now that you’ve installed the library, check out the Quick Start guide to learn how to create and customize your tables.