Unoffical module to fetch tabs from Songsterr's API.
npm i songsterr-api-node
const { songsterrSearch } = require("songsterr-api-node")
const fetch = async string => {
const results = await songsterrSearch(string)
console.log('Tabs')
console.log(results)
}
fetch('track or artist')
This module also transform's the original result's tuning array to one that makes sense.
console.log(results[0].tracks[0].tuning)
[ 64, 59, 55, 50, 45, 40 ]
console.log(results[0].tracks[0].tuning)
{
octave: 'E2 A2 D3 G3 B3 E4',
note: 'e A D G B E',
name: 'Standard tuning'
}