Ever get bored and want something to watch but do not know what video/movie to watch? Well this snippet will search for movies and then give you a random movie name!
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
if (context.params.event.content.startsWith(`?random_movie`)) {
const randomMovieNames = require('random-movie-names');
await lib.discord.channels['@0.2.0'].messages.create({
content: `${randomMovieNames()}`,
channel_id: context.params.event.channel_id,
});
console.log(randomMovieNames());
}