Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@nederlandse-spoorwegen/travel-information-api
Advanced tools
A wrapper for the NS travel information API.
The NS API package provides a high level wrapper for the NS travel information API.
npm install @nederlandse-spoorwegen/travel-information-api
Clone the repository and run the following commands:
npm install
npm run dev
A development server is now running allowing you to test your changes directly on your machine.
For more documentation about parameters and responses please refer to the NS developer portal
All errors are returned directly to the user and are not handled by the wrapper.
Create a new api instance using your key and optional base url. By default the base url is correctly set and you do not need to specify it.
const api = new NsApi("YourKey")
All calls return a Promise.
Get a list of departure by station code or UIC code. Note that when both a station code and uic code have been specified the station code has the higher priority.
const departures = api.departures()
const params = {
station: "UT", // Utrecht Centraal
uicCode: "8400058" // Amsterdam Centraal
}
departures.list(params)
.then((result) => {
// Handle successful response
})
.catch((error) => {
// Handle error
})
Get a list of all disruptions.
const disruptions = api.disruptions()
const params = {
type: "storing"
actual: false,
lang: "en"
}
disruptions.list(params).then((result) => {
})
Get a list of disruptions by providing a station code.
disruptions.byStation("UT").then((result) => {
})
Get a specific disruptions by using an id.
disruptions.byId("SomeId").then((result) => {
})
Get information about journey fares and discounts. Dates should us the following format: 'yyyy-MM-dd'
const prices = api.prices()
const params = {
fromStation: "ASD", // Amsterdam Centraal
toStation: "UT", // Utrecht Centraal
plannedFromTime: "2018-10-14",
};
prices.get(params).then((result) => {
})
Information about stations.
const stations = api.stations()
stations.list().then((result) => {
})
Returns travel advice information.
const trips = api.trips();
const params = {
fromStation: "ASD", // Amsterdam Centraal
toStation: "UT", // Utrecht Centraal
};
trips.get(params).then((result) => {
})
FAQs
A wrapper for the NS travel information API.
We found that @nederlandse-spoorwegen/travel-information-api demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.