
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
webviz-core-components
Advanced tools
webviz_core_components
is a Dash component library for use in webviz
. A storybook showing all available components is available at https://equinor.github.io/webviz-core-components/storybook-static.
You can quickly get started with:
pip install webviz-core-components
python usage.py
If you want to build and develop yourself, you should fork + clone the repository, and then:
npm ci --ignore-scripts --prefix ./react
pip install .[dependencies]
pip install dash[dev]
pip install .[tests]
react/src/lib/components/<ComponentName>/<ComponentName>.tsx
Have a look at other components to see how the directory and file structure looks like.
The demo app is in react/src/demo
and is where you will import an example of your
component. To start the existing demo app, run npm start --prefix ./react
.
To test your code in a Python environment:
npm run build --prefix ./react
pip install -e .
examples/
which uses your new component.Write tests for your component.
tests/
. Take a look at them to see how to write tests using
the Dash test framework.pytest tests
.react/tests
. Take a look at them to see how to write tests using
the Jest test framework.Add custom styles to your component by putting your custom CSS files into
your distribution folder (webviz_core_components
).
MANIFEST.in
so that they get
properly included when you're ready to publish your component._css_dist
dict in
webviz_core_components/__init__.py
so dash will serve them
automatically when the component suite is requested.import "./<ComponentName>.css
. Make sure that the class names in your stylesheet
are starting with your component's name and two underscores: .MyComponent__MyClassName
.FAQs
Core components for webviz-config
We found that webviz-core-components demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.