🌐 Live App | 📖 Documentation | 🐍 PyMoose | 🐛 Report a Bug | 💬 Discussions
Jardesigner is a web-based GUI for building multiscale in neuroscience and systems biology. It enables users to interactively create and simulate computational models and visualize the results without any coding. Jardesigner provides easy access to builtin model components and several curated model databases. It provides 2D and 3D visualization of the model with animation and plotting of simulation results. The primary backend for Jardesigner is MOOSE, the Multiscale Object Oriented Simulation Environment.
A live hosted version is available at jardesigner.mooseneuro.org — no installation required. The server infrastructure is managed by the jardesigner-server repository.
Full documentation including a GUI quickstart guide is available at mooseneuro.org/docs/html/user/py/quickstart/qs_GUI.html.
Jardesigner provides dedicated panels for each aspect of a neuronal model:
- Morphology — import from SWC or NeuroML files, or build parametric single-compartment soma, ball-and-stick, or Y-branch models
- Passive Properties — configure Rm, Cm, Ra, Em, and initial Vm per compartment path
- Ion Channels — add voltage-gated and ligand-gated channels with placement rules across compartments
- Dendritic Spines — define spine head/shaft geometry and placement rules along dendrites
- Chemical Models — load reaction-diffusion networks from SBML or kkit (GENESIS-derived) format files
- Adaptors — couple electrical and chemical compartments bidirectionally (e.g. Ca²⁺ influx driving downstream signaling)
- Stimuli — apply current injection, voltage clamp, chemical field stimuli, or periodic/random synaptic inputs
- Plots — select quantities to record: voltage, currents, channel conductances, ion concentrations, signaling molecule levels
Jardesigner connects directly to two major neuroscience databases:
- NeuroMorpho.org — search and import reconstructed neuronal morphologies from the world's largest morphology repository
- Allen Brain Cell Types Database — browse cell types and import morphologies directly into the model
- 3D Morphology Viewer — interactive visualization of neuronal structure with simulation animation overlay
- Reaction Graph — visualization of the loaded chemical reaction network
- Simulation Plots — plots of all recorded quantities against time
Jardesigner requires two terminals running simultaneously — one for the backend and one for the frontend.
git clone https://github.com/MooseNeuro/jardesigner.git
cd jardesignerpython -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r backend/requirements.txt
cd backend
python server.py
# → http://0.0.0.0:5000cd frontend
npm install
npm run dev
# → http://localhost:5173Open http://localhost:5173 in your browser. Both terminals must stay running.
From the repo root:
source venv/bin/activate
python launch_jardes.py <config.json>If you are interested in contributing to the project:
- Fork the repository on GitHub
- Create a branch:
git checkout -b feature/your-feature-name - Open a pull request against the
developmentbranch
For larger changes, open an issue first to discuss the approach.
Please open an issue on the GitHub issue tracker.
When reporting a bug, please include:
- What you expected vs. what happened, and steps to reproduce
- Your browser, OS version
- The model JSON config if relevant — export via File → Download Project
- A screenshot of the Simulation Error dialog if one appeared
Funded by The Kavli Foundation. Supported by NCBS Bangalore and CHINTA.
Jardesigner is available under the GNU General Public License v3. Copyright (c) Upinder S. Bhalla, NCBS, Bangalore, 2025.

