1.0.11 • Published 3 years ago

node-linejs v1.0.11

Weekly downloads
-
License
CC-BY-NC-3.0
Repository
github
Last release
3 years ago

LineJS(No E2E Support)

LINE's selfbot libraries written in NodeJS.

Please note that this project is not heavily maintained and some functions are not tested yet.

Installation

npm install node-linejs

Examples

More examples can be found here

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()

References

LRTT/linepy

LRTT/LINE-SERVICES

crash-override404/linepy-modified

herywinarto/SIMPLE-PROTECTV2

discordjs/collection

License

This work is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported License.

1.0.11

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago