LINE's selfbot libraries written in NodeJS.
npm install node-linejssh
npm install node-linejs
`
Examples
More examples can be found here
`js
const { Client } = require('node-linejs');
const bot = new Client();
bot.on('ready',()=>{console.log('Logged in as ' + bot.user.displayName)})
bot.on('message',(message)=>{
if(message.author.id == bot.user.id) return;
if(message.content == 'ping') {
return message.channel.send('pong')
}
})
bot.login()
``
