v0.4.1
GitHub

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, or bun)
  • Svelte version 5.0.0 or higher

Installing the Package

			npm install 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.