TypeScript library to integrate PowSyBl network viewers in a JavaScript project.
npm install @powsybl/network-viewerTypescript library to integrate network viewers in a javascript project.
This library contains three viewers:
- network-area-diagram-viewer, to integrate the SVG representing a graph of voltage levels within a network, the SVG and the corresponding metadata JSON file being generated by powsybl-diagram
- single-line-diagram-viewer, to integrate the SVG representing single-line diagrams, the SVG and the corresponding metadata JSON file being generated by powsybl-diagram
- network-map-viewer, to display the substations / voltage levels on a map
The library is built with the Vite bundler.
Node from v22+ is required to build with Vite.
Installation using npm:
'npm install @powsybl/network-viewer'
#### For developers
For development purpose, to install this library locally from an app, you should run these commands in the library project :
- npm install
- npm run build:all
- npm run pack:all
Then in the app project :
- npm install {PATH_TO_LIBRARY}/powsybl-network-map-layers-{LIBRARY_VERSION}.tgz
- npm install {PATH_TO_LIBRARY}/powsybl-network-viewer-{LIBRARY_VERSION}.tgz
_Warning_ : with Create React App, we realised the library was not updating correctly if you try to install the library multiple times.
To fix this, run this command from the app after running "npm install"
- rm -Rf node_modules/.cache
#### For integrators
(Optional) Test your package from library dependent directory
If you want to deploy a new version of powsybl-network-viewer in the NPM package registry,
you need to follow the steps below:
---
##### 1/ Prepare released version
- Update to the new version in both packages (example 3.2.0):
npm --workspaces --include-workspace-root --no-git-tag-version version 3.2.0
Remarks: without --no-git-tag-version the commit doesn't contain both package.json and the complete package-lock.json files then we do it manually next
- Commit the package.json and package-lock.json files, push to a branch, make a PR, have it reviewed and merged to main with title Bump to 3.2.0.
- Pull and checkout main on your last commit.
- Tag (with -s signed) your last commit : git tag -s (example: git tag -s v3.2.0)
- Push tag : git push origin
---
##### 2/ Publish version
- Checkout the tag in a fresh repo copy : cd $(mktemp -d) && git clone https://github.com/powsybl/powsybl-network-viewer.git then cd powsybl-network-viewer && git checkout
- Install your packages: npm install --workspaces --include-workspace-root
- Build the packages - npm will publish the README.md, the package.json files and the dist directory you just generate : npm run build:all
- Login on the command line to the npm registry: npm login
- Publish the package: npm publish:all
---
##### 3/ Prepare next version
- Update to the next version in both packages (example 3.3.0-dev.0):
npm --workspaces --include-workspace-root --no-git-tag-version version 3.3.0-dev.0
- Commit the package.json and package-lock.json files, push to a branch, make a PR, have it reviewed and merge to main with title Bump to 3.3.0-dev.0.
- Check license-checker-config.json for license white list and exclusion.
If you need to update this list, please inform organization's owners.
- We need to exclude some packages for now :
- @mapbox/jsonlint-lines-primitives@2.0.2 is a special license
- cartocolor@4.0.2 is Creative Commons but not correctly described in the package
- rw@0.1.4 is BSD-3-Clause but not correctly described in the package