Node js turn on lights other than the first

I have the blinkstick strip however using the js package I cannot see how to turn in anything but the first led. How can I address the other lights in the strip?

check the docs. for one LED at a time, use setColor with an index. to set all LEDs at the same time, check out setColors.

https://arvydas.github.io/blinkstick-node/classes/BlinkStick.html#method_setColor
https://arvydas.github.io/blinkstick-node/classes/BlinkStick.html#method_setColors

Thank you I had not spotted the second method.