Skip to content

Files

weave-js

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 22, 2024
Apr 28, 2025
Oct 9, 2023
Apr 2, 2025
May 12, 2025
Nov 9, 2023
Oct 4, 2024
Jan 13, 2025
Oct 4, 2023
May 30, 2023
Jan 4, 2024
May 30, 2023
Oct 4, 2023
May 30, 2023
May 30, 2023
Nov 27, 2023
May 30, 2023
Apr 30, 2025
May 30, 2023
Dec 9, 2024
May 30, 2023
Oct 30, 2024
May 30, 2023
Sep 6, 2024
Apr 30, 2025

@wandb/weave

This module contains the public-facing @wandb/weave library. This code used to live in app, but was moved here so it could be bundled with the weave python package.

See PR https://github.com/wandb/core/pull/8926 for details.

FAQ

I am a frontend developer. How will the migration from app -> @wandb/weave affect my development workflow?

The only effect this refactor should have on your development is that it changes where you import certain objects from. Instead of doing

import makeComp from '../util/profiler';

you would now do

import makeComp from '@wandb/weave/common/util/profiler';

This change does not:

  • Change any of the commands you use to build, lint, test, install, or deploy the application
  • Add any additional devops steps to the local development workflow
  • Add additional dependencies for you to manage
  • Require you to perform any migrations
  • Alter the functionality of the application

It only changes where certain code lives.

I have a new function, component, or object that I have written. Should I put it in common/?

Only put things into common/ if they are also needed by @wandb/weave. If something you have written is not needed by @wandb/weave, just put it in app/.