
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
$ npm install plannerjs
Include it in the browser:
<script src="https://planner.js.org/js/planner-latest.js"></script>
...
<script>
const { FlexibleTransitPlanner, Units } = PlannerJS;
</script>
Include it in your JavaScript project:
const { FlexibleTransitPlanner, Units } = require('plannerjs');
// or
import { FlexibleTransitPlanner, Units } from 'plannerjs';
Use it in both environments:
const planner = new FlexibleTransitPlanner();
planner.addConnectionSource("https://graph.irail.be/sncb/connections");
planner.addStopSource("https://irail.be/stations/NMBS");
planner.query({
from: "http://irail.be/stations/NMBS/008812005", // Brussels North
to: "http://irail.be/stations/NMBS/008892007", // Ghent-Sint-Pieters
minimumDepartureTime: new Date(),
walkingSpeed: 3, // KmH
minimumWalkingSpeed: 3, // KmH
maximumWalkingDistance: 200, // meters
minimumTransferDuration: Units.fromMinutes(1),
maximumTransferDuration: Units.fromMinutes(30),
maximumTravelDuration: Units.fromHours(1.5),
maximumTransfers: 4,
})
.take(3)
.on('data', (path) => {
console.log(JSON.stringify(path, null, 4));
})
.on('end', () => {
console.log('No more paths!')
})
.on('error', (error) => {
console.error(error);
});
For further instructions, follow the documentation at https://planner.js.org/
npm run docnpm testnpm run browsernpm run doc-bundleFAQs
The JavaScript framework for journey planning.
We found that plannerjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.