
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
A small javascript library to retrieve data from the Bands in Town API.
(Install and save to dependencies)
npm i bit_js --save
yarn add bit_js
var bit_js = require('bit_js');
var options = {
'artist': 'skrillex',
'app_id': 'my_app_id',
};
var optionsEvents = {
'artist': 'skrillex',
'app_id': 'my_app_id',
'daterange': '2017-09-20',
}
var callback = function(data) {
console.log(data)
}
bit_js.bitGetArtist(options, callback);
bit_js.bitGetArtistEvents(optionsEvents, callback);
import {
bitGetArtist,
bitGetArtistEvents
} from 'bit_js'
let options = {
'artist': 'skrillex',
'app_id': 'my_app_id',
}
let optionsEvents = {
...options,
'daterange': {
'from': '2017-08-31',
'to': '2017-10-05',
}
}
bitGetArtist(options, data => console.log(data))
bitGetArtistEvents(optionsEvents, data => console.log(data))
options object:
artist string: Name of the artist. For example Britney%20Spears.
app_id string:
ID of the app using the API. This can be anything.
daterange string|object:
Can be a single date, or an object ({'from':'','to':''}). Date should be in "BiT format", YYYY-MM-DD.
callback(data) function: Callback function that returns data if call is successful.
For usage terms & conditions see the BiT API Terms.
Note: This project is not affiliated with or maintained by Bands in Town.
FAQs
Javascript library for the Bands in Town API
We found that bit_js 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.