npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

kannel

v0.2.7

Published

Kannel.js is a javascript implementation of Kannel Box protocol, it allow write some powerful SMS VAS applications or sms gateways with kannel and node.js

Downloads

31

Readme

Javascript implementation of Kannel Box protocol

Description

Kannel.js is a javascript implementation of Kannel Box protocol, it allow write some powerful SMS VAS applications or sms gateways with kannel and node.js

NPM NPM

Installation

npm install kannel

Connect to bearerbox using object config

	var kannel = require('kannel'),
	    app = new kannel.smsbox({
			host : '192.168.10.3', // bearerbox host - default '127.0.0.1'
			port : 14001, //smsc connection port - default 13001
			id   : "helloBox", // smsc id - defaut ""
			frequence : 1 // hearbeat - default 5s
		});
	app.on('connect',function(){
		console.log("hello box is connected to "+app.conf["host"]+":"+app.conf['port']);
	});
	app.connect();

Connect to bearerbox using kannel config file information

	var kannel = require('kannel'),
	    app = new kannel.smsbox("kannel/kannel.conf?"+
	    	"host=$..bearerbox-host&"+
	    	"port=$..smsbox-port&"+
	    	"id=$.smsbox[-1:].smsbox-id&"+
	    	"frequence=$.smsbox[-1:].frequence-time"
	    );
	app.on('connect',function(){
		console.log("hello box is connected to "+app.conf["host"]+":"+app.conf['port']);
	});
	app.connect();

The parser use JSONpath's syntax for access to the json representation of the conf file.

Receive / Send SMS

	var kannel = require('kannel'),
	    app = new kannel.smsbox("kannel/kannel.conf?"+
	    	"host=$..bearerbox-host&"+
	    	"port=$..smsbox-port&"+
	    	"id=$.smsbox[-1:].smsbox-id&"+
	    	"frequence=$.smsbox[-1:].frequence-time"
	    );
	app.on('connect',function(){
		console.log("hello box is connected to "+app.conf["host"]+":"+app.conf['port']);
	});
	app.on("sms",function(data){
		console.log("Recive SMS ",
			" [FROM:",data.sender.toString(),
			"][TO:",data.receiver.toString(),
			"][MSG :",data.msgdata.toString(),
		"]");
		app.sendSMS({
		  sender: data.receiver,
		  receiver: data.sender,
		  msgdata: 'Hello', // string or buffer
		  id : data.id
		});
		app.sendUCS2SMS({
		  sender: data.receiver,
		  receiver: data.sender,
		  msgdata: 'Bonjour, Hi, 你好, صباح الخير', // UCS2 text
		  id : data.id
		})
	});
	app.connect();

Send a delivery ACK

	var kannel = require('kannel'),
	    app = new kannel.smsbox("kannel/kannel.conf?"+
	    	"host=$..bearerbox-host&"+
	    	"port=$..smsbox-port&"+
	    	"id=$.smsbox[-1:].smsbox-id&"+
	    	"frequence=$.smsbox[-1:].frequence-time"
	    );
	app.on('connect',function(){
		console.log("hello box is connected to "+app.conf["host"]+":"+app.conf['port']);
	});
	app.on("sms",function(data){
		console.log("Recive SMS ",
			" [FROM:",data.sender.toString(),
			"][TO:",data.receiver.toString(),
			"][MSG :",data.msgdata.toString(),
		"]");
		try{
			if(6*Math.random()+1 > 5)
				throw new Error("I'm random error for test retry");
			if(/6/.test(data.receiver.toString()))
				data.success(); // successfull received 
			else if(/7/.test(data.receiver.toString())){
				data.buffered(); // received and buffered, need send success ACK after.
				setTimeout(function(){
					// send a success ack to the bearerbox
					app.write("ack",{ // write ack message and send it to the bearerbox
						nack : kannel.status.ack.success,
						//time :  Math.floor((new Date).getTime()/1000), // unix time default Math.floor(Date.now()/1000) 
						id   :  data.id
					});
				},5000);
			} else
				data.failed(); //receive sms failed do not try again
		}catch(e){
			// you can also use it, the bearerbox will resend the message after. 
			data.failed_tmp(); //receive sms failed retry later
		}
	});
	app.connect();

Receive ADMIN command from bearerbox

	var kannel = require('kannel'),
	    app = new kannel.smsbox("kannel/kannel.conf?"+
	    	"host=$..bearerbox-host&"+
	    	"port=$..smsbox-port&"+
	    	"id=$.smsbox[-1:].smsbox-id&"+
	    	"frequence=$.smsbox[-1:].frequence-time"
	    );
	app.on('connect',function(){
		console.log("hello box is connected to "+app.conf["host"]+":"+app.conf['port']);
	});
	app.on("admin",function(data){
		console.log("Receive ADMIN CMD ",
			" [CODE:",data.command,
			"][FROM BOX:",data.boxc_id.toString(),
		"]");
		switch(data.command){
			case kannel.status.admin.shutdown:
				/*Shutdown*/
				console.log("Receive shutdown command...bye");
				process.exit();
				break;
		};
	});
	app.connect();

How test samples

Run bearebox

	$ cd path/to/kannel.js
	$ sudo bearerbox kannel/kannel.conf

Test echobox (echo server clusterized)

alt tag

Usage
    $ node samples/echoBox [path to kannel.conf]
Example
    $ cd path/to/kannel.js
    $ node samples/echoBox
	echoBox worker #{1} is connected to 127.0.0.1:14001
	echoBox worker #{3} is connected to 127.0.0.1:14001
	echoBox worker #{2} is connected to 127.0.0.1:14001
	echoBox worker #{4} is connected to 127.0.0.1:14001

Test replbox (REPL sms)

alt tag

Usage
    $ node samples/replbox [path to kannel.conf]
Example
    $ cd path/to/kannel.js
    $ node samples/replbox
    replbox is connected to 127.0.0.1:14001
    for send a message tip 
        SMS > FROM TO Your Message
        Exp:  070805 09505 hello SMS.
    SMS > 

Type your SMS in REPL console, the server send a echo responce for each recieved sms.

Test smsToMail (clusterized)

alt tag

Usage
    $ node samples/smsToMail [path to kannel.conf]
Example
    $ cd path/to/kannel.js
    $ node samples/smsToMail
	smsToMail worker #{1} is connected to 192.168.2.4:14001
	smsToMail worker #{5} is connected to 192.168.2.4:14001
	smsToMail worker #{4} is connected to 192.168.2.4:14001
	smsToMail worker #{3} is connected to 192.168.2.4:14001
	smsToMail worker #{6} is connected to 192.168.2.4:14001
	smsToMail worker #{8} is connected to 192.168.2.4:14001
	smsToMail worker #{7} is connected to 192.168.2.4:14001
	smsToMail worker #{2} is connected to 192.168.2.4:14001

Test messagesBoard (websocket and sms chat)

alt tag

Usage
    $ node samples/messagesBoard [path to kannel.conf]
Example
	$ cd path/to/kannel.js
	$ node samples/messagesBoard
	Fri Apr 11 2014 04:09:22 GMT+0100 (WAT) Server is listening on port 14014

Goto to http://127.0.0.1:14014, Type your name, your message or send sms for chat, Enjoy your chat.

Test scripting (coffeeScript and javascript VAS applications)

alt tag

Usage
    $ node samples/scripting [path to kannel.conf]
Example
	$ cd path/to/kannel.js
	$ node samples/scripting
	scripting box is connected to 127.0.0.1:14001
	Fri Apr 11 2014 04:09:22 GMT+0100 (WAT) Server is listening on port 14014

Goto to http://127.0.0.1:14014, for show the dashboard. Goto to samples/scripting/public/scripts for sms service. The SMS services is identified by the name of script whitout extension. ( Ex : "FUTURE" represent futur.coffee, "COUNT" represent count.js )

You can also send SMS from http request

[Tuto] Test Kannel.js

Prerequisite

Before start you must now It :

  • It's a kannel.js is a librarie who allow to create a smsbox remplacement for more efficient SMS VAS application.
  • The new infrastructure become :
    +----------+----------+-------------+----------+-------------------------+----------+-------------------------+
    | Operator | Protocol | Application | Protocol |       Application       | Protocol |       Application       |
    +----------+----------+-------------+----------+-------------------------+----------+-------------------------+
    | SMSC     | <socket> | bearerbox   | <socket> | Your NodeJs Application |          |                         |
    +----------+----------+-------------+----------+-------------------------+----------+-------------------------+
    |                                             Instead of                                                      |
    +----------+----------+-------------+----------+-------------------------+----------+-------------------------+
    | SMSC     | <socket> | bearerbox   | <socket> | smsbox                  | <http>   | Your NodeJs Application |
    +----------+----------+-------------+----------+-------------------------+----------+-------------------------+
  • For test processing it you must have
    • git for clone this repository. For install go to here
    • nodejs for run your application. For install go to here
    • kannel for connect to a wireless provider. For install : sudo apt-get install kannel
    • kannel-extras for send sms to your application. For install : sudo apt-get install kannel-extras

How start a sample

Make your sure kannel is down, configured and work well (bearerbox and smsbox).

  • Clone kannel.js reposotory $ git clone https://github.com/badlee/kannel.js.git
  • Go to in mybox $ cd kannel.js
  • Run a bearerbox $ bearerbox -v 0 /etc/kannel/kannel.conf 1>/tmp/bearerbox.log 2>&1 &
  • Run sample $ node samples/scripting /etc/kannel/kannel.conf
  • If you see scripting box is connected to all is ok

Send SMS to your application

You can send directly to your shortnumber or to your connected modem. But if you want test localy you must run fakesmsc (part of kannel-extras).

$ /usr/lib/kannel/test/fakesmsc "FROM TO text script"

	$ ## Example of test
	$ /usr/lib/kannel/test/fakesmsc "0708 6061 text hello oshimin" # test hello.js service
	$ /usr/lib/kannel/test/fakesmsc "1120 8080 text futur" # Test futur services
	$ /usr/lib/kannel/test/fakesmsc "0708 8080 text count" # Test Count
	$ /usr/lib/kannel/test/fakesmsc "FROM TO text vote A" # Test de vote
	$ /usr/lib/kannel/test/fakesmsc "FROM TO text vote B" # Test de vote
	$ /usr/lib/kannel/test/fakesmsc "FROM TO text vote C" # Test de vote
	$ /usr/lib/kannel/test/fakesmsc "FROM TO text vote D" # Test de vote

License

(The MIT License)

Copyright (c) 2007-2009 Ulrich Badinga <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.