
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
@expofp/wayfinding
Advanced tools
ExpoFP SDK internal: framework-neutral wayfinding (routing, snapping, scene rendering)
Framework-neutral wayfinding for the ExpoFP SDK: a routing/snapping engine, an
imperative runtime orchestrator, and a scene renderer — with no coupling to
efp stores or MobX. core and runtime are environment-agnostic; the scene
renderer assumes a browser-like environment (requestAnimationFrame, document),
so the package is not suitable for Node/SSR as-is. All three layers sit behind a
single entry point, createWayfinding.
pnpm add @expofp/wayfinding @expofp/renderer
@expofp/renderer is a peer dependency and must be installed by the consumer:
the package's public types (e.g. RenderableDef on Wayfinding/RendererPort)
reference it, so its types must resolve for @expofp/wayfinding's .d.ts to compile.
| Layer | What it is |
|---|---|
core | Graph build + A* pathfinding, route geometry, snapping, transition points. Pure functions. |
runtime | Imperative orchestrator (setRoute / setPosition / notifyFloorChanged) over the engine. |
renderer | Scene mutator (icons, trails, route lines) against an injected RendererPort. |
These layers are internal. The package exports only the createWayfinding
facade, the port interfaces the host implements, the boundary data types, the
CURRENT_POSITION_POINT_ID protocol sentinel, and the optimizeWaypointOrder
helper.
The package knows nothing concrete about the host renderer, graph data, or app
state. The host supplies four ports via WayfindingConfig:
dataSource (GraphDataSource) — graph lines + line ends for pathfinding.renderer (RendererPort) — def factories, current scale, scene layers, commit.iconProvider (IconProvider) — canvases for icon names.floorContext (FloorContext) — active floor / visibility predicates.@expofp/renderer is a type-only peer (its types appear in the public API; the
concrete renderer is injected through RendererPort). @expofp/geometry is a regular
runtime dependency (Rect, Box, geometry helpers).
import { createWayfinding } from '@expofp/wayfinding';
const wayfinding = createWayfinding({
dataSource, // GraphDataSource
renderer, // RendererPort
iconProvider, // IconProvider
floorContext, // FloorContext
layers, // LayerNames: { points, trail, lines, linesAnimated, currentPosition }
gpsConfig, // optional GPS calibration + snap/reroute thresholds
onTransitionClick: (point) => {
/* switch active floor */
},
onRouteUpdate: (lines, bounds) => {
/* fit camera, update UI */
},
onRouteDistance: (distance) => {
/* show remaining distance */
},
});
// Drive it with route/position/floor updates:
wayfinding.setRoute({ from, to, accessible: false });
wayfinding.setPosition(position); // or null to hide
wayfinding.notifyFloorChanged();
// Forward camera/pointer events:
wayfinding.applyScale(scale);
wayfinding.applyRoll(angle);
wayfinding.handleClick(pickedDefs);
wayfinding.destroy();
optimizeWaypointOrder is exported separately to order booth waypoints before a
createWayfinding instance exists (it backs the SDK's getOptimizedRoutes).
FAQs
ExpoFP SDK internal: framework-neutral wayfinding (routing, snapping, scene rendering)
The npm package @expofp/wayfinding receives a total of 612 weekly downloads. As such, @expofp/wayfinding popularity was classified as not popular.
We found that @expofp/wayfinding demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers 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
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.