MCPcopy Index your code
hub / github.com/ToucanToco/weaverbird

github.com/ToucanToco/weaverbird @v24.0.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v24.0.0 ↗ · + Follow
468 symbols 1,535 edges 211 files 98 documented · 21% updated 2d agov0.118.0 · 2025-09-02★ 1081 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

npm Codecov Coverage CircleCI

weaverbird

GitHub Logo

General documentation

The project's technical and user documentation is hosted on https://weaverbird.toucantoco.com The documentation's source files can be found in the docs directory.

You can play with the online playground

Project setup

yarn install

Requirement: node > v11

Compiles target library

yarn build-bundle

This will generate an importable JS VisualQueryBuilder library in the dist directory.

Important note: While we do our best to embrace semantic versioning, we do not guarantee full backward compatibility until version 1.0.0 is realeased.

Run your tests

The basic command to run all tests is:

yarn test:unit

You can also use a watcher so that tests rerun automatically on a change:

yarn test:unit --watchAll

To run a single test file:

yarn test:unit path/to/yourfile.ts

Finally, you can deactivate typescript checks to run tests quicker:

yarn test:quick

This can be useful to accelerate your development cycle temporarily when developing a new feature or fixing a bug. Under the hood, this will use the babel-jest transformer on typescript files instead of ts-jest.

Lints and fixes files

yarn lint

Build the API documentation

yarn build-doc

This will run typedoc on the src/ directory and generate the corresponding documentation in the dist/docs directory.

Build and run the documentation website

The web documentation is powered by Jekyll.

You can find all the sources into the doc-build folder.

To build and locally launch the documentation you need Ruby and gem before starting, then:

# install bundler
gem install bundler

# run jekyll and a local server with dependencies :
bundle exec jekyll serve

Enrich it!

put your .md file into the docs folder. You can add a folder as well to better organization

into your .md file don't forget to declare this at the beginning of the file :

---
title: your title doc name
permalink: /docs/your-page-doc-name/
---

to finish to get your page into the doc navigation you have to add it in `_data/docs.yml``

example :

- title: Technical documentation
  docs:
  - steps
  - stepforms
  - your-page-doc-name

Run the storybook

Storybook uses the bundled lib, so all showcased components must be in the public API.

yarn storybook

This will run storybook, displaying the stories (use cases) of UI components.

Stories are defined in the stories/ directory.

Customize configuration

See Configuration Reference.

Publication

This library is published on npm under the name weaverbird automatically each time a release is created in GitHub.

Create a release

  • Define new version using semantic versioning

  • Create a new local branch release/X.Y.Z from master

ex: release/0.20.0

  • Update the version property in package.json and in sonar-project.properties

  • Check differences between last release and current and fill CHANGELOG.md with updates

  • Delete the ##changes title at start of the CHANGELOG.md if provided
  • Add the date and version at start of CHANGELOG.md following this convention

    [X.Y.Z] - YYYY-MM-DD ex: [0.20.0] - 2020-08-03

  • Add link to the CHANGELOG.md from this version to the previous one at the end of the CHANGELOG.md

    ```

    ```

    ex: [0.20.0]: https://github.com/ToucanToco/weaverbird/compare/v0.19.2...v0.20.0

  • Commit changes with version number

ex: v0.20.0

  • Push branch

  • Create a pull request into master from your branch

  • When pull request is merged, create a release with the version number in tag version and title (no description needed)

ex: v0.20.0

  • Hit the release "publish release" button (this will automatically create a tag and trigger the package publication )

Usage as library

Without any module bundler


<link rel="stylesheet" href="https://github.com/ToucanToco/weaverbird/raw/v24.0.0/weaverbird/dist/weaverbird.umd.min.js" />


<script src="https://github.com/ToucanToco/weaverbird/raw/v24.0.0/vue.js"></script>
<script src="https://github.com/ToucanToco/weaverbird/raw/v24.0.0/weaverbird/dist/weaverbird.umd.min.js"></script>

With an ES module bundler (typically webpack or rollup)

import { Pipeline } from 'weaverbird';

By default, the CommonJS module is imported. If you prefer the ES module version, import dist/weaverbird.esm.js.

Styles

If your module bundler can also import CSS (e.g. via styles-loader):

import 'weaverbird/dist/weaverbird.css';

If you prefer to use Sass, you may import directly the scss:

@import '~weaverbird/src/styles/main';

This example makes use of the ~ syntax from webpack's sass-loader to resolve the imported modules.

API

Modules

See the documentation generated in dist/docs directory

Styles

TODO: document here sass variables that can be overriden

Playground

The /playground directory hosts a demo application with a small server that showcases how to integrate the exported components and API. To run it, just run:

yarn playground

which is basically a shortcut for the following steps:

# build the visual query builder bundle
yarn build-bundle --watch
# run the server and enjoy!
node playground/server.js

Once the server is started, you should be able to open the http://localhost:3000 in your favorite browser and enjoy!

The server.js script reads the playground/playground.config.json config file to know which database should be queried or which http port should be used. If you want to customize these values, either edit this json file or override each available option on the commandline, e.g.

node playground/server.js --dburi mongodb://localhost:27018

You can also customize options through environment variables with the following naming pattern VQB_PLAYGROUND_{OPTION}, e.g.

VQB_PLAYGROUND_DBURI=mongodb://localhost:27018 node playground/server.js

You can use the default test dataset by loading the playground/default-dataset.csv file. To do that, use the following command line:

node playground/server.js --reset

If you want to use a custom CSV file, use the defaultDataset command line option:

node playground/server.js --defaultDataset my-dataset.csv --reset

If you don't have mongodb installed, you can use the --automongo flag from the command line. It will use mongodb-prebuilt to download (the first time) and run mongo 4.0.13 and then listen on the port guessed from the --dburi flag.

mongodb-prebuilt uses mongodb-download internally to download mongodb binaries. Unfortunately, the URLs on https://fastdl.mongodb.org used for these binaries have changed and mongodb-download doesn't seem up-to-date, cf. https://github.com/mongodb-js/mongodb-download/issues/36 and https://github.com/mongodb-js/mongodb-prebuilt/issues/59 To bypass this issue, you can manually specify the download URL by setting the MONGODB_DL_URI environment variable. For instance, you can use the following command line: MONGODB_DL_URI=https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-debian92-4.0.13.tgz node playground/server.js --automongo or MONGODB_DL_URI=https://fastdl.mongodb.org/osx/mongodb-osx-ssl-x86_64-4.0.13.tgz node playground/server.js --automongo

Extension points exported contracts — how you extend this code

Core symbols most depended-on inside this repo

Shape

Function 232
Method 182
Class 34
Interface 19
Enum 1

Languages

TypeScript100%

Modules by API surface

src/lib/translators/base.ts52 symbols
src/lib/templating.ts46 symbols
src/lib/labeller.ts46 symbols
src/lib/translators/mongo.ts42 symbols
src/store/mutations.ts25 symbols
tests/unit/utils.ts17 symbols
src/components/domutil.ts11 symbols
playground/server.js11 symbols
playground/app.js11 symbols
docs/js/typeahead.bundle.min.js11 symbols
src/store/backend-plugin.ts8 symbols
src/lib/dataset/helpers.ts8 symbols

Datastores touched

(mongodb)Database · 1 repos

For agents

$ claude mcp add weaverbird \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page