
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
straight-skeleton
Advanced tools

This is a TypeScript library that wraps the basic functionality of CGAL's straight skeleton implementation using Wasm (WebAssembly). You can use this library to generate unweighted straight skeletons of polygons with or without holes.
If you are interested in a less robust but more fast straight skeleton implementation that's written in pure TypeScript, check out v1 of this library.
npm i straight-skeleton
This library supports both arrays of points (SkeletonBuilder.buildFromPolygon) and GeoJSON polygons (SkeletonBuilder.buildFromGeoJSON).
import {SkeletonBuilder} from 'straight-skeleton';
// Contains two rings: outer and inner.
const polygon = [
[
[-1, -1],
[0, -12],
[1, -1],
[12, 0],
[1, 1],
[0, 12],
[-1, 1],
[-12, 0],
[-1, -1]
], [
[-1, 0],
[0, 1],
[1, 0],
[0, -1],
[-1, 0]
]
];
// Initialize the Wasm module by calling init() once.
SkeletonBuilder.init().then(() => {
const result = SkeletonBuilder.buildFromPolygon(polygon);
// Check if the skeleton was successfully constructed
if (result !== null) {
for (const vertex of result.vertices) {
// Do something with vertices
}
for (const polygon of result.polygons) {
// Do something with polygons
}
}
});
npm i to install dependencies.cd src/core, then sh ./install_libraries.sh to download and unpack all dependencies.mkdir build && cd build to create a build directory.emcmake cmake .. to generate the build files.emmake make to build the Wasm module. Rerun this whenever your .cpp files change.npm run build to build the library or npm run dev to start a development server that watches for changes.FAQs
Straight skeleton algorithm
The npm package straight-skeleton receives a total of 1,655 weekly downloads. As such, straight-skeleton popularity was classified as popular.
We found that straight-skeleton 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.