Skip to content

A monorepo that contains all frontend code for VEuPathDB websites

License

Notifications You must be signed in to change notification settings

VEuPathDB/web-monorepo

Repository files navigation

web-monorepo

Prerequisites

This project requires a system that can handle Node.js 18.12+ (most Linux distributions from ~2019 onwards, macOS 10.15+, Windows 10+) and on which you can install Volta for version management (see https://docs.volta.sh/guide/#installing-volta for system requirements)

Then the installation process detailed below will be able to bootstrap the following:

  • Node.js 24+ (specified in package.json for this project)

  • Corepack (a Node.js tool that automatically manages package manager versions)

  • Yarn 4.12.0 (which itself requires Node.js 18.12+)

Setup

For supply chain security, add this to your shell profile (.bashrc, .zshrc, etc.):

# Supply chain security: require packages to be 7+ days old (Yarn 4+ feature)
export YARN_NPM_MINIMAL_AGE_GATE=10080

Why this is needed:

  • YARN_NPM_MINIMAL_AGE_GATE=10080: Protects against supply chain attacks by requiring NPM packages to be at least 7 days old before installation. This is a Yarn 4+ feature that helps prevent installing packages immediately after publication (when they’re most vulnerable to compromise).

ℹ️

Developers have two options for setting this variable

Option A: Global shell configuration (simple)

Add the variable to your shell profile (.bashrc, .zshrc, etc.) as shown above. This will apply to all Yarn 4+ projects on your system.

Option B: Per-repository with direnv (recommended)

Use direnv to automatically set this variable only when working in this repository:

  1. Install direnv for your platform (see installation instructions)

  2. Add the direnv hook to your shell config:

    # For bash, add to ~/.bashrc:
    eval "$(direnv hook bash)"
    
    # For zsh, add to ~/.zshrc:
    eval "$(direnv hook zsh)"
    
    # For fish, add to ~/.config/fish/config.fish:
    direnv hook fish | source
  3. Enable direnv in this repository:

    cp .envrc.example .envrc
    direnv allow

The environment variable will now be set automatically whenever you enter this repository directory.

Volta is recommended for Node version management. It will automatically use Node 24 when working in this repository.

To set up Volta with Corepack:

# Install volta if you haven't already
curl https://get.volta.sh | bash

Open a new terminal for Volta to take effect

volta install node
volta install yarn
volta install corepack
corepack enable --install-directory ~/.volta/bin

This configuration allows Volta to manage Node versions while Corepack manages Yarn versions based on the packageManager field in package.json.

Development on Cedar Server

Follow the instructions above in a regular terminal (not a dev site environment after sourcing etc/setenv) to set up Volta, Node, Yarn and Corepack.

To work smoothly in a dev site environment (any time after sourcing etc/setenv), you need to address a PATH configuration issue that can shadow Volta’s yarn with an older system version.

The Issue

Intranet dev site configurations use etc/setenv scripts that prepend legacy paths to PATH. This causes the system’s old yarn to take precedence over Volta’s managed version, breaking the build.

The Fix

Choose one of these approaches:

Option 1: Using a helper shell function in regular workflow (Recommended)

Add this function to your shell profile (~/.bashrc, ~/.zshrc, etc.):

# Prepend directory to PATH, moving it to front if already present elsewhere
path_prepend() {
  case "$PATH" in "$1":*|"$1"|"") PATH="$1"; return ;; esac  # already first or empty
  PATH=":$PATH:"          # add sentinels for matching anywhere
  PATH="${PATH//:$1:/:}"  # remove exact match (colon-bounded)
  PATH="$1$PATH"          # prepend (leading colon already exists)
  PATH="${PATH%:}"        # strip trailing colon
}

Then update your standard workflow to include one additional step after sourcing etc/setenv:

# 1. Start terminal session
# 2. cd /var/www/PlasmoDB/plasmo.bmaccallum
# 3. source etc/setenv
# 4. Restore Volta to front of PATH:
path_prepend ~/.volta/bin

This avoids modifying shared files and is easy to remember.

Option 2: Edit etc/setenv directly

Edit your dev site’s etc/setenv file (typically $BASE_GUS/etc/setenv) to append instead of prepend:

# Change from:
export PATH=$GUS_HOME/bin:$PROJECT_HOME/install/bin:$PATH

# To:
export PATH=$PATH:$GUS_HOME/bin:$PROJECT_HOME/install/bin

This ensures Volta’s yarn (from ~/.volta/bin) remains first in PATH.

Package Manager Verification

IMPORTANT: This project requires Yarn. Using npm install will fail with dependency resolution errors because this monorepo uses Yarn-specific features (workspace protocol, etc.) that npm doesn’t support.

The repository includes automatic checks that run before yarn install to verify:

  • Corepack is properly configured with the correct Yarn version (4.12.0)

If you see errors about wrong Yarn version, refer to the setup instructions above.

Quick Start

Install yarn dependencies

From anywhere in the repo:

yarn

Note: This repository uses immutable installs for security. The yarn.lock file must be committed to git and cannot be modified by yarn install. Commands like yarn add <package> and yarn remove <package> work normally and will update the lockfile as expected. This prevents accidental mass upgrades (e.g., deleting and regenerating yarn.lock would upgrade many packages to newer versions). All dependency upgrades should be intentional and reviewed.

Overview

This repository is a "monorepo", using the nx build system and yarn@4 dependency manager. The source code is divided into one of three types of packages: "config", "lib", and "site".

  • "config" packages (./packages/configs) include various build and development configurations and tools.

  • "lib" packages (./packages/libs) include standalone library and webapp source code.

  • "site" packages (./packages/sites) include complete website source code.

Many "lib" and "site" packages include development tools, such as development servers, test scripts, etc.

Many commands require a reference to the package name. All package names are currently prefixed with @veupathdb/. For example, the eda package name is @veupathdb/eda.

The repository is currently configured as a "package based repository". This is subject to change, in the future (see https://nx.dev/concepts/integrated-vs-package-based to read about the differences between package based and integrated repos).

Common Tasks

The following tasks are common performed by developers. This serves as a reference guide, and is not exhaustive in any way. If you feel something is missing, create an issue, or open a pull request.

All commands are expected to be run in the repository’s root directory, unless otherwise specified.

Start a local dev site

"Site" projects are stored in the packages/sites directory. Each one corresponds to a "cohort". For example, packages/sites/genomics-site contains the code used to build the client code for a genomics website.

Each cohort contains a .env.sample file. Copy this to a sibling .env file. You may need to modify some values, such as usernames, passwords, etc. You can also specify a website to use for various services. Typically a deployed QA site will suffice, but you can also run a "local backend" via various methods. (TODO: link to relevants docs/repos).

Once you have created a .env file, you can run the local dev site with the command:

yarn nx start <package name>

For example, if you want to run a local clinepi site, you would run the command:

yarn nx start @veupathdb/clinepi-site

Once the website has been compiled, the dev server will output some build statistics and automatically open a browser tab. You can kill the local dev server with CTRL-C in the terminal where you started it.

Modifying code (and updating a running local dev site)

When a local dev site is running, it will detect when build dependencies are updated and reload the active webpage.

Note: the following refers to code tracked by the monorepo, and not third-party dependencies from npm.

There are two types of souce code that can be updated:

  1. Source code within the package being served.

  2. Source code within a dependent package.

Changes to code within the package being served will be detected automatically. The local dev service should reompile the affected module and reload the website without intervention.

Changes to code within a dependent workspace package will require a build command for the local dev server to detect the change.

For example, if you change code in packages/libs/eda, you will need to run this command in a new terminal window, from the repository root:

yarn workspace @veupathdb/eda build-npm-modules

Once this command completed, the running dev server will see the updated build artifacts, recompile the website, and reload the webpage. There are some cases where this might not work as expected, such as if the recompile step fails. In those cases, you may need to restart the local dev server. You can monitor the progress of the recompilation step in the terminal where you started the dev server.

View workspace dependency graph

From the root package.json:

yarn nx graph

Execute a workspace’s yarn script using the nx task runner

From the root package.json:

yarn nx run <workspaceName>:<scriptName>

For example, you can start the MultiBLAST dev server by running

yarn nx run @veupathdb/multi-blast:start

Rebuild dependencies when running a development server

When running a development server (such as yarn nx start @veupathdb/eda or yarn nx start @veupathdb/clinepi-site), use the following command to rebuild changes made to dependencies, and to have the dev site reload with the changes:

cd packages/libs/<package>
yarn build-npm-modules

Note: You may need to manually reload your website to see the changes the first time.

Using the equivalent nx command (yarn nx build-npm-modules @veupathdb/<package>) has proven inadequate in this scenario.

Notes on individual packages

EDA dev server

Directory: packages/libs/eda

You will need to configure the server with a packages/libs/eda/.env.local file that sets various environment variables.

For more documentation see the package README and this sample file.

VEuPathDB sites

Directory: packages/sites/{site name}-site

Copy the packages/sites/{site name}-site/.env.sample file to packages/sites/{site name}-site/.env and configure the new file with passwords and the desired backend for the site.

Run yarn to update dependencies if necessary.

Run the command yarn nx start @veupathdb/{site name}-site. For example, to run the ortho site use yarn nx start @veupathdb/ortho-site.

IDE hints

emacs tide

If it is showing errors for tsx imports (especially in eda) and tide-verify-setup mentions tsserver version 3.x then it is time to upgrade emacs tide (to, at time of writing 4.5.4):

M-x package-reinstall <ret> tide <ret>

Client Bundle Server 🐉

Warning. There be dragons! This section has not been maintained for a long time.

The Client Bundle Server is a Docker image based on NGINX that is used to serve VEuPathDB client code over HTTP.

As the client code comes in 2 flavors (bundles), legacy and modern, this NGINX server has an internal path rewrite based on the requesting browser’s user agent string to the appropriate client bundle component on request.

This means using a modern browser, requesting the file genomics/site-client.bundle.js will cause the server to actually return modern/genomics/site-client.bundle.js whereas requesting that same file from an older or unsupported browser (such as CURL or Postman) the server will return legacy/genomics/site-client.bundle.js.

Browsers

Whether a browser is considered modern or legacy is dependent on the version of the browser compared to a RegEx constructed by the browserslist-useragent-regexp library using the input query constructed in the browserslist-config package of this repo. (See index.js for the raw queries)

Docker Image

The docker image is based on NGINX-Perl and includes NodeJS for executing a script based on browserslist-useragent-regexp that determines which path a specified file should be served from.

The image build is multi-staged with the first stage compiling primary contents of this repository, and the second stage setting up NGINX and the secondary JS script included in the docker directory (makeSupportedBrowsersScript.js).

Paths

Content is served from the following paths from the root path used to reach a running instance of the built Docker image:

{URL}/clinepi/{target-file}
{URL}/genomics/{target-file}
{URL}/mbio/{target-file}
{URL}/ortho/{target-file}

These paths correspond to the following container internal paths:

/var/www/legacy/clinepi/{target-file}
/var/www/modern/clinepi/{target-file}

/var/www/legacy/genomics/{target-file}
/var/www/modern/genomics/{target-file}

/var/www/legacy/mbio/{target-file}
/var/www/modern/mbio/{target-file}

/var/www/legacy/ortho/{target-file}
/var/www/modern/ortho/{target-file}

Testing

The Docker image may be tested locally by performing the following steps from the docker/ subdirectory:

  1. Build and Start the image:

    make docker-build
    make docker-run
  2. Using your favorite HTTP request making tool such as Postman, CURL, or a web browser, make a request to http://localhost/genomics/site-client.bundle.js.LICENSE.txt . If the service is working you should receive a LICENSE text file’s contents as the response with a 200 status code. If it is not working you will receive a 403 or 404 error.

About

A monorepo that contains all frontend code for VEuPathDB websites

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 48