GithubHelp home page GithubHelp logo

dariobottazzi / mosca Goto Github PK

View Code? Open in Web Editor NEW

This project forked from moscajs/mosca

0.0 2.0 0.0 6.51 MB

MQTT broker as a module

Home Page: mosca.io

JavaScript 99.44% R 0.25% HTML 0.12% Shell 0.19%

mosca's Introduction

Mosca   Build Status  Coverage Status

MOSCA

NPM

NPM

##About ####Mosca is a node.js mqtt broker, which can be used:

Features

  • MQTT 3.1 compliant.
  • QoS 0 and QoS 1.
  • Various storage options for QoS 1 offline packets, and subscriptions.
  • As fast as it is possible.
  • Usable inside ANY other node.js app.
  • Supports node v0.10.

##Quickstart

Standalone

npm install mosca bunyan -g
mosca -v | bunyan

Embedded

npm install mosca --save

Show me some code:

var mosca = require('mosca');

var ascoltatore = {
  //using ascoltatore
  type: 'mongo',
  url: 'mongodb://localhost:27017/mqtt',
  pubsubCollection: 'ascoltatori',
  mongo: {}
};

var settings = {
  port: 1883,
  backend: ascoltatore
};

var server = new mosca.Server(settings);

server.on('clientConnected', function(client) {
    console.log('client connected', client.id);
});

// fired when a message is received
server.on('published', function(packet, client) {
  console.log('Published', packet.payload);
});

server.on('ready', setup);

// fired when the mqtt server is ready
function setup() {
  console.log('Mosca server is up and running');
}

All the info to get you started is gathered in this wiki page

Also there is an example using Redis

How to's/Tutorials

All to be found on our repository wiki section.

OR

read the dox generated documentation.

Learn more

See the slides of my talk "MQTT and Node.js - Messaging in the Internet of Things".

You can find a test version of mosca at test.mosca.io. You can use ws://test.mosca.io/ to connect to the WebSocket tunnel. This is powered by the docker image.

If you like Mosca, consider supporting the project by donating via Gittip, or hire me to get you started and solve any issue you might find. Also, check out our showcase wiki page! Feel free to add yourself! :)

Security Issues

Mosca sits between your system and the devices: this is though role, and we did our best to secure your systems. However, you might find a security issue: in that case, email @mcollina at [email protected].

Feedback

Use the issue tracker for bugs. Tweet us for any idea that can improve the project. Chat with us on Mosca's room on Gitter.

Links

Authors

Matteo Collina

Contributors

David HallsGitHub/davedoesdev
Andrea ReginatoGitHub/andreareginato
Chris WigginsGitHub/chriswiggins
Samir NaikGitHub/samirnaik
Leo SteinerGitHub/ldstein
John KokkinidisGitHub/SudoPlz
Morgan ChengGitHub/mocheng

Logo

Sam Beck

LICENSE - "MIT License"

Copyright (c) 2013-2015 Matteo Collina, http://matteocollina.com

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.

mosca's People

Contributors

mcollina avatar mocheng avatar ldstein avatar andreareginato avatar davedoesdev avatar juanenriqueescobar avatar samirnaik avatar chriswiggins avatar justcfx2u avatar behrad avatar sudoplz avatar monteslu avatar faisalabid avatar andreapavoni avatar avengermojo avatar bachwehbi avatar braincrumbz avatar simplesmiler avatar jensoleg avatar stefanobaghino avatar sumitkumar avatar timoxley avatar

Watchers

James Cloos avatar Dario Bottazzi avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.