Give your Viewes the option to show the chat that they are lurking now! This sinppet should also show you how to send a simple menssage via twitch chat - !lurk
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
//Super basic lurk snippet to show how sending messages is working in twitch
let username = context.params.event.author.username;
let lurkMessage = await lib.twitch.chat['@release'].messages.create({
channel_id: `${context.params.event.channel.id}`,
content: `${username} is lurking now LuL`,
});