Linkr
Home Resources Tools Documentation Blog Demo
FR
  • What is Linkr?
  • Deployment modes
  • Quick start
  • Local install
  • With Docker
  • Manual install
  • Client-only
  • Your first project
  • Workspaces and projects
  • The data pipeline
  • Entities and sharing
  • Versioning and collaboration
  • Overview
  • Projects
  • Wiki
  • Plugins
  • Members and roles
  • Settings
  • Schemas
  • Databases
  • Derived sub-databases
  • Data quality
  • Data catalog
  • SQL script collections
  • ETL pipelines
  • Overview
  • Mapping projects
  • Global view
  • Target concepts
  • Mapping editor
  • Suggestions
  • Evaluation
  • Export
  • Overview
  • Concepts
  • Cohorts
  • Patient data
  • Pipeline
  • Datasets
  • IDE
  • Web apps
  • Versioning
  • Overview
  • Tabs and widgets
  • Built-in widgets
  • Analysis widgets
  • Control charts (SPC)
  • Surveys and eCRF
  • R and Python code
  • Filters, settings and export
  • Overview
  • Presentation mode
  • Exporting a report
  • Agents
  • Model providers
  • Skills
  • Authoring through MCP
  • Import and export
  • Git versioning
  • Community catalog
  • Publishing content
  • Production install
  • Configuration
  • Authentication and permissions
  • Files on the server
  • Backup and restore
  • Glossary
  • Keyboard shortcuts
  • Release notes
Documentation Getting started Client-only

Client-only install

Run Linkr in the browser alone, with Node.js: no backend, no accounts, and publishable as a static site.

Summary

The lightest method: Node.js alone, no backend, no database, no accounts. Everything runs in the browser. In exchange, no remote warehouse, no Git versioning and no sharing between users. It is the right choice to discover Linkr, work on local files on your own, or publish an instance as a static site.

Requirements

  • Node.js 20+ and npm (nodejs.org).
  • Git.
  • About 1 GB of disk space.

Installation

The commands are the same on macOS, Linux and Windows.

Clone the repository

git clone https://framagit.org/interhop/linkr/linkr.git
cd linkr

Install dependencies

Anywhere from a few dozen seconds to 2 minutes.

npm install

Start Linkr

Then open http://localhost:3000.

npm run dev:web

You're set

Linkr is running in your browser. The sections below are there when you need them: demo data, publishing as a static site, troubleshooting.

Getting the demo data

The demo dataset (the MIMIC-IV demo database and the example projects) is not in the repository, and npm run dev:web does not fetch it, so no network is required. Run this command once to add it to your local instance:

npm run data:fetch

What client-only mode enables, and what it does not, is detailed in Deployment modes.

Publishing as a static site

This command compiles the app into a set of static files ready to deploy:

cd apps/web
npm run build

The output lives in apps/web/dist/. You can upload it as-is to:

  • GitLab Pages: through .gitlab-ci.yml (an example is provided in the repo).
  • GitHub Pages: push the contents of dist/ to a gh-pages branch.
  • Netlify / Vercel / Cloudflare Pages: connect the repository and point the build output to apps/web/dist.
  • Classic web server (nginx, Apache): copy dist/ to the served folder.

To check the result before uploading it, npm run preview (still in apps/web) serves the build locally.

Serve over HTTPS

DuckDB-WASM and some modern APIs (File System Access) require a secure context: HTTPS, or HTTP only on localhost. If you host Linkr on a domain, enable HTTPS.

Troubleshooting

npm install fails. Check that you are on Node.js 20+ (node -v). If you have several Node.js versions, run nvm use 20.

Port 3000 is busy. The dev script usually offers another port automatically, or close the process that holds it (lsof -i :3000 on macOS/Linux).

The app shows a login page. That means VITE_API_URL is set, usually in apps/web/.env.local (created by the manual install). Empty it, or run npm run dev:client, which forces client-only mode.

The build is very large. That’s expected in client-only mode: the DuckDB-WASM, Pyodide and webR runtimes weigh several MB each. They are loaded on demand by the browser, not all at once.

Next steps

  • Move to server mode, with accounts and a warehouse: Install with Docker.
  • Build your first project: Your first project.
PreviousManual installNextYour first project

Product

  • Home
  • Demo

Resources

  • Documentation
  • Resources
  • Tools
  • Blog

Community

  • Framagit source code
  • Github source code

About

  • InterHop.org
  • Contact

2021–2026 InterHop — CC BY-NC-SA 4.0 (site) · GPLv3 (software)