Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
hafas-rest-api-client
Advanced tools
A client for hafas-rest-api
endpoints, e.g. for the *.transport.rest
APIs.
npm install hafas-rest-api-client
import createClient from 'hafas-rest-api-client'
const vbbClient = createClient('https://v5.vbb.transport.rest', {
// Please pass in a User-Agent header to let the providers of the API endpoint understand how you're using their API.
userAgent: 'my awesome project',
})
const res = await vbbClient.journeys('900000003201', '900000024101', {results: 1})
hafas-rest-api-client
is a client hafas-rest-api@3
APIs. Check their individual API docs for all supported parameters.
The response objects have special Symbol
fields for meta information:
const {HEADERS, SERVER_TIMING, CACHE} = require('hafas-rest-api-client')
console.log('response headers', res[HEADERS]) // Fetch API Headers object
console.log('server timing', res[SERVER_TIMING]) // value of the Server-Timing response header
console.log('server cache', res[CACHE]) // value of the X-Cache response header
If you have a question or have difficulties using hafas-rest-api-client
, please double-check your code and setup first. If you think you have found a bug or want to propose a feature, refer to the issues page.
FAQs
An API client for hafas-rest-api endpoints.
We found that hafas-rest-api-client 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.