WPJS is a client of whatsapp in nodejs
###Features
- Sender messages type text
- Receiver messags type text
You need to have yowsup installed,
pip install yowsup2
git clone https://github.com/JavaGarcia/wpjs.git
var wpjs = require('./index.js');
wpjs.connect({number: '57300349xxx', password: '=XXXXX', yowsup:"PATH_YOWSUP-CLI_INSTALLED"}, function(state){
console.log(state)
});
wpjs.send({to: '57300349xxx', type: 'txt', data: 'Im busy...'});
wpjs.on('inbox',function(message){
console.log(message.type)//type of message (txt)
console.log(message.from)// number_src of message
console.log(message.username) // nickname
console.log(message.date)// arrival date
console.log(message.data)// message...
});
var wpjs = require('./index.js');
wpjs.connect({number: '57300349xxx', password: '=XXXXX', yowsup:"PATH_YOWSUP_INSTALLED"}, function(state){
console.log(state)
});
wpjs.on('inbox',function(message){
console.log('[INBOX] User:'+message.username+' from:'+message.from+' data: '+message.data);
wpjs.send({to: message.from, type: 'txt', data: message.data});
});