To apply fill to a particular cell exceljs doc helped me with the below code.
worksheet.getCell('A1').fill = {
type: 'pattern',
pattern:'solid',
fgColor:{argb:'FF0'}
};
But to apply fill to a range of cells there is no documentation and also can't find with a google search.