
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.
sbtech-general-api-client
Advanced tools
SBTech general API client contains tools which make communicating with the SBTech API's easier.
It is a base package for all SBTech API clients, you can use it to implement more specific API client (e.q. SportsData API, Login API, Betslip API and etc).
It contains:
sbtFetch (wrapper on native browser fetch)sbtFetch extends functionality of native fetch by next features:
npm install --save sbtech-general-api-client
Package support two scenarios to configure token service:
import {tokenService} from 'sbtech-general-api-client'
let tokenConfig = {
tokenRenewUrl: 'example.com/token/renew'
}
tokenService.init(tokenConfig)
interface TokenConfig {
tokenRenewInterval: number
tokenRenewUrl: string
tokenRenewProvider: TokenRequestProvider //callback to retrieve token from legacy site, can be deprecated in future
}
import {sbtFetch} from 'sbtech-general-api-client'
let defaultRequestOptions = {
maxRetriesAmount: 5,
headers: {
myCustomHeader: 'headerValue1'
}
}
let api = sbtFetch('example.com/api', defaultRequestOptions) // setup default options (optional)
api('events?', {attachToken: false}).get() // options can be overridden
.then((json)=>{
// ...
})
RequestOptions extends native fetch options object.
interface RequestOptions extends RequestInit {
responseAs?: 'json' | 'text' | 'response' // default: json
retryCheckers?: RetryChecker[] // default: checkExpiredToken
maxRetriesAmount?: number // default: 3
attachToken?: boolean // default: true
}
FAQs
General api client for all SBTech APIs
We found that sbtech-general-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.

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.