
Product
Introducing Socket Fix for Safe, Automated Dependency Upgrades
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
connfu package provides an easy way to get access to connFu platform using Node.js
The eassiest way is by installing it from the npm
repository:
$ npm install connfu
If you'd prefer to install the latest master version of connFu, you can clone the connfu-node
source repository
from GitHub and then install it using npm
:
$ git clone "https://github.com/bluevialabs/connfu-node.git"
$ npm install -g connfu-node/
First, require connfu
package:
var connFu = require('connfu');
Next, create a basic application using your connFu API KEY:
var app = connFu.createApp('<your_api_key>');
Then, attach some event handlers:
app.on("voice", {
join: function(params){
console.log("The number " + params.from + " joined to the conference with number " + params.to);
},
leave: function(params){
console.log("The number " + params.from + " left the conference with number " + params.to);
}
});
Finally, just listen!
app.listen();
When you install connFu node package, you get a CLI that allows you to do some common tasks fast and easily:
The connFu
package can also send commands to handle some aspects of the application:
var connFu = require('connfu');
// Init application
var app = connFu.createApp('<your_api_key>');
// Create a voice channel with a UK number
app.commands.voice().create("conference", "uk", {welcome_message: "Welcome!"}, function(err, data){
// Add a number to the whitelist
app.commands.voice("conference").whitelist().create("+44xxxxxx", "rafeca", function(err, data){
// Update the name of the recently whitelisted number
app.commands.voice("conference").whitelist("+4444xxxxxx").update("the wizard");
});
});
/* (...) */
// Delete the voice channel
app.commands.voice("conference").delete();
For more thorough examples, look at the following examples
fancy-connfu-application.js - Very simple application that prints the events received from the streaming API
growl-notifier.coffee - CoffeeScript application that notfies via Growl the received events
commands.js - Express.js application that exposes all the DSL commands to a RESTful interface
To run the test suite first invoke the following command within the repo, installing the development dependencies:
$ npm install --dev
then run the tests:
$ npm test
(The MIT License)
Copyright (c) 2011 Rafael Oleza <roa@tid.es>
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.
FAQs
DSL for creating real time voice applications using connFu platform
The npm package connfu receives a total of 1 weekly downloads. As such, connfu popularity was classified as not popular.
We found that connfu demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.