npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@jupytercad/jupytercad-salome

v2.0.0

Published

A JupyterLab extension.

Readme

jupytercad_salome

Github Actions Status

JupyterCAD-Salome is an extension for JupyterCAD which enables users to generate meshes from their creations in JupyterCAD, leveraging the powerful meshing capabilities of Salome, a leading open-source platform for numerical simulation.

JupyterCAD-Salome is currently in active development.

Creating a mesh with JupyterCAD in combination with JupyterCAD-Salome

As you can see in the video above, JupyterCAD-Salome will add a new button to the JupyterCAD toolbar allowing to generate a mesh from the currently selected object in the JupyterCAD viewer.

JupyterCAD-Salome toolbar option

Try it live

A deployment is published for you to give it a try: https://trungleduc-jupytercad.hf.space/lab

This demo is entirely collaborative, which means anybody getting to this link will see what you do and be able to collaborate with you.

You can make your own deployment on HuggingFace pressing the "⋮" button on the top-right corner of the page, then "Duplicate this Space"

Duplicate app button

Local Install

  1. Install Salome from https://www.salome-platform.org/?page_id=2430
  2. To install the extension, execute:
    pip install jupyterlab
    pip install --pre jupytercad jupytercad-salome

Then you can either start JupyterLab or JupyterCAD:

jupyter lab
# OR
jupyter cad

Implementation

JupyterCAD-Salome consists of two components:

  • A jupyter-server endpoint which is ready to compute the mesh upon client demand. This endpoint is defined using an OpenAPI spec. Users are not bound to the provided jupyter-server endpoint, JupyterCAD-Salome can connect to any server implementing the OpenAPI spec.

[!NOTE] To use JupyterCAD-Salome with a different Salome server, set the SALOME_SERVER_BASE_URL environment variable to your server address before starting JupyterLab.

  • A client plugin for JupyterCAD adding UI elements to interact with the mesh-generation endpoint. Whenever the user clicks on the toolbar button, they are prompted with a dialog to configure the API call:

Meshing configuration

[!NOTE] This user interface is generated automatically from this schema file.

Once the API call is made, the server will compute the mesh using the smesh library and send back the response with the computed mesh to the client.

The user can later on re-generated the mesh with different inputs:

Configuring the mesh afterwards

Packaging the extension

See RELEASE