Skip to main content

Utility for writing frontend plugins for Datasette with Vite

Project description

datasette-vite

PyPI Changelog Tests License

Utility for writing frontend plugins for Datasette with Vite

Installation

Install this plugin in the same environment as Datasette.

datasette install datasette-vite

Usage

This plugin provides a vite_entry() function that other Datasette plugins can use to include Vite-built JavaScript and CSS assets in their pages.

Setting up your plugin

Your plugin needs a Vite project alongside its Python code. Configure vite.config.ts to output a manifest and place built files in a static/ directory:

// vite.config.ts
import { defineConfig } from 'vite'

export default defineConfig({
  build: {
    manifest: true,
    outDir: 'dist',
    rollupOptions: {
      input: 'src/main.ts',
      output: {
        assetFileNames: 'static/[name]-[hash][extname]',
        chunkFileNames: 'static/[name]-[hash].js',
        entryFileNames: 'static/[name]-[hash].js',
      }
    }
  }
})

After running vite build, copy dist/.vite/manifest.json and dist/static/ into your plugin's Python package directory so they are included when your plugin is installed.

Using vite_entry() in your plugin

from datasette_vite import vite_entry

entry = vite_entry(
    datasette=datasette,
    plugin_package="my_datasette_plugin",
)
html = await entry("src/main.ts")

The returned html string contains <script> and <link> tags ready to include in your page:

<link rel="stylesheet" href="/-/static-plugins/my_datasette_plugin/main-def456.css">
<script type="module" src="/-/static-plugins/my_datasette_plugin/main-abc123.js"></script>

Development mode

During development, point your plugin at a running Vite dev server instead of reading from the manifest. This enables hot module replacement.

Configure a dev path via the datasette-vite plugin setting, keyed by your plugin's Python package name:

datasette \
    -s plugins.datasette-vite.dev_paths.my_datasette_plugin http://localhost:5173/

If your Vite config uses the default base: '/', a port-only shorthand works too — datasette-vite expands it to http://localhost:<port>/:

datasette \
    -s plugins.datasette-vite.dev_ports.my_datasette_plugin 5173

Your plugin code is the same in dev and prod — datasette-vite reads the setting at request time:

entry = vite_entry(
    datasette=datasette,
    plugin_package="my_datasette_plugin",
)
html = await entry("src/main.ts")

In dev mode this produces:

<script type="module" src="http://localhost:5173/@vite/client"></script>
<script type="module" src="http://localhost:5173/src/main.ts"></script>

Using vite_js_urls() and vite_css_urls() for content scripts

If your plugin needs to inject assets into existing Datasette pages (rather than owning the full template), use vite_js_urls() and vite_css_urls(). These return structured data suitable for Datasette's extra_js_urls and extra_css_urls hooks:

from datasette import hookimpl
from datasette_vite import vite_js_urls, vite_css_urls

@hookimpl
def extra_js_urls(datasette):
    return vite_js_urls(
        datasette=datasette,
        entrypoint="src/main.ts",
        plugin_package="my_datasette_plugin",
    )

@hookimpl
def extra_css_urls(datasette):
    return vite_css_urls(
        datasette=datasette,
        entrypoint="src/main.ts",
        plugin_package="my_datasette_plugin",
    )

Dev-mode behavior is controlled by the same plugins.datasette-vite.dev_paths / dev_ports settings described above.

vite_js_urls() returns a list of {"url": "...", "module": True} dicts. In dev mode this includes the Vite client script; in prod mode it resolves the hashed filename from the manifest.

vite_css_urls() returns a list of CSS URL strings. In dev mode this returns [] (Vite injects CSS via JS). In prod mode it collects all CSS from the entrypoint and recursively from imported chunks.

API reference

vite_entry(datasette, plugin_package, manifest_dir=None)

  • datasette: The Datasette instance.
  • plugin_package: The Python package name of your plugin (used to resolve the manifest location, generate static asset URLs, and look up dev-mode config).
  • manifest_dir: Optional path to the directory containing manifest.json. Defaults to the directory of your plugin package's __init__.py.

Returns an async callable. Call it with an entrypoint path (matching a key in your Vite manifest) to get an HTML string of the corresponding <script> and <link> tags.

Dev-mode resolution order

For all three functions, the dev path is resolved from datasette.plugin_config("datasette-vite") in this order — first match wins:

  1. dev_paths.<plugin_package> — full URL.
  2. dev_ports.<plugin_package> — port number; expanded to http://localhost:<port>/.
  3. None — production mode; assets are read from the manifest.

vite_js_urls(datasette, entrypoint, plugin_package, manifest_dir=None)

Returns a list of URL entries suitable for Datasette's extra_js_urls hook. Each entry is a {"url": "...", "module": True} dict.

vite_css_urls(datasette, entrypoint, plugin_package, manifest_dir=None)

Returns a list of CSS URL strings suitable for Datasette's extra_css_urls hook. Includes CSS from the entrypoint and recursively from imported chunks.

Development

To set up this plugin locally, first checkout the code. You can confirm it is available like this:

cd datasette-vite
# Confirm the plugin is visible
uv run datasette plugins

To run the tests:

uv run pytest

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

datasette_vite-0.0.1a4.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

datasette_vite-0.0.1a4-py3-none-any.whl (9.3 kB view details)

Uploaded Python 3

File details

Details for the file datasette_vite-0.0.1a4.tar.gz.

File metadata

  • Download URL: datasette_vite-0.0.1a4.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for datasette_vite-0.0.1a4.tar.gz
Algorithm Hash digest
SHA256 30a722ad4b9cd6e499b446b1fbe271af261c6cdc057fb872a8e31c43478ada2f
MD5 10299f21f221a3ce321b635c74c852c1
BLAKE2b-256 d5b0f5e4ebd61181062e34ae9becffee296348feac00ebc91a2294b0bd7620d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for datasette_vite-0.0.1a4.tar.gz:

Publisher: publish.yml on datasette/datasette-vite

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file datasette_vite-0.0.1a4-py3-none-any.whl.

File metadata

File hashes

Hashes for datasette_vite-0.0.1a4-py3-none-any.whl
Algorithm Hash digest
SHA256 35b5ed1b04454bb9f6e30aff7f53985bad2aeb5ad9b86342363fa64b0270848e
MD5 403dcdba0435228b5a1dc4b436da4bfa
BLAKE2b-256 b55326978f469dbaa4ad9f80b6ace698451404880223e9c01c48678402e2f6b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for datasette_vite-0.0.1a4-py3-none-any.whl:

Publisher: publish.yml on datasette/datasette-vite

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page