Utility for writing frontend plugins for Datasette with Vite
Project description
datasette-vite
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, pass vite_dev_path to point at a running Vite dev server instead of reading from the manifest. This enables hot module replacement:
entry = vite_entry(
datasette=datasette,
plugin_package="my_datasette_plugin",
vite_dev_path="http://localhost:5173/",
)
html = await entry("src/main.ts")
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
VITE_DEV_PATH = os.environ.get("VITE_DEV_PATH")
@hookimpl
def extra_js_urls(datasette):
return vite_js_urls(
datasette=datasette,
entrypoint="src/main.ts",
plugin_package="my_datasette_plugin",
vite_dev_path=VITE_DEV_PATH,
)
@hookimpl
def extra_css_urls(datasette):
return vite_css_urls(
datasette=datasette,
entrypoint="src/main.ts",
plugin_package="my_datasette_plugin",
vite_dev_path=VITE_DEV_PATH,
)
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, vite_dev_path=None, manifest_dir=None)
datasette: The Datasette instance.plugin_package: The Python package name of your plugin (used to resolve the manifest location and generate static asset URLs).vite_dev_path: Optional URL to a running Vite dev server (e.g."http://localhost:5173/"). When set, assets are served from the dev server instead of from built files.manifest_dir: Optional path to the directory containingmanifest.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.
vite_js_urls(datasette, entrypoint, plugin_package, vite_dev_path=None, 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, vite_dev_path=None, 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file datasette_vite-0.0.1a3.tar.gz.
File metadata
- Download URL: datasette_vite-0.0.1a3.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdf8c2624dbb7d02ea0e3186229d6593607c5548d6c3b509d0c3f3460a47dcc9
|
|
| MD5 |
c688fc78cd7ffc7dde1a29c2a728e854
|
|
| BLAKE2b-256 |
05b07da0a877227ac26933291a258bab9e93fe63ae798d19c30d36fc0125e52a
|
Provenance
The following attestation bundles were made for datasette_vite-0.0.1a3.tar.gz:
Publisher:
publish.yml on datasette/datasette-vite
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
datasette_vite-0.0.1a3.tar.gz -
Subject digest:
bdf8c2624dbb7d02ea0e3186229d6593607c5548d6c3b509d0c3f3460a47dcc9 - Sigstore transparency entry: 1126694007
- Sigstore integration time:
-
Permalink:
datasette/datasette-vite@21044506e863b2b67cbefdb6fc0ed74a5ce8ff83 -
Branch / Tag:
refs/tags/0.0.1a3 - Owner: https://github.com/datasette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@21044506e863b2b67cbefdb6fc0ed74a5ce8ff83 -
Trigger Event:
release
-
Statement type:
File details
Details for the file datasette_vite-0.0.1a3-py3-none-any.whl.
File metadata
- Download URL: datasette_vite-0.0.1a3-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be21855d48627b482caed3c5c4b51a3a21f5f3da42ef64f12f441492201c05ba
|
|
| MD5 |
0f7863fbd862cd4775b2599cbabbfd2c
|
|
| BLAKE2b-256 |
512b1ccf32c027ccd70b68355d8b10455ac0e70135bd565a7fc4c10dc37096a5
|
Provenance
The following attestation bundles were made for datasette_vite-0.0.1a3-py3-none-any.whl:
Publisher:
publish.yml on datasette/datasette-vite
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
datasette_vite-0.0.1a3-py3-none-any.whl -
Subject digest:
be21855d48627b482caed3c5c4b51a3a21f5f3da42ef64f12f441492201c05ba - Sigstore transparency entry: 1126694043
- Sigstore integration time:
-
Permalink:
datasette/datasette-vite@21044506e863b2b67cbefdb6fc0ed74a5ce8ff83 -
Branch / Tag:
refs/tags/0.0.1a3 - Owner: https://github.com/datasette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@21044506e863b2b67cbefdb6fc0ed74a5ce8ff83 -
Trigger Event:
release
-
Statement type: