
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
![]()
Simple and distributed pub/sub for browsers and node.js
meucci('tasks/:id').use(tasks.validate, tasks.store);
meucci('tasks/:id').subscribe(tasks.show);
meucci('tasks/1').publish(task);
meucci('tasks/create').respond(tasks.create);
meucci('tasks/create').request(task);
Start a server:
var meucci = require('meucci')
, app = meucci();
app.listen(8000);
app('messages').use(spamFilters);
Create a client:
<script type='text/javascript' src='meucci.js'></script>
<script type='text/javascript'>
var client = meucci();
client.connect('http://localhost:8000/');
client('messages').subscribe(function(message) {
alert(message);
});
</script>
Publish a message:
client('messages').publish('Hello world!');
Meucci depends on two mainstream libraries: socket.io and q.
In a node.js environment just issue
$ npm install meucci
For the browser you can pick the build/meucci-client.js file or build/meucci.min.js for the minified version.
In case you are a bower user, just issue
$ bower install meucci
If you use require.js Meucci automagically detects it and makes it available as a meucci module.
Also, if you use AngularJS it creates for you an angular.meucci module, that yields a meucci service.
Otherwise Meucci attaches a meucci global variable to window.
Creates a new connection to host and returns a new socket. If called more than once it overrides the existing socket. The options parameter holds the options you want to pass to socket.io.
It defines a path for an array of sockets.
meucci('tasks');
meucci('tasks/:id');
meucci('tasks/:id/:method?');
meucci('tasks/:id/delete');
meucci('*');
It returns an instance of meucci.route. In case there are no sockets added, the events are broadcast only across the local environment or through meucci.socket, if it has been instantiated beforehand with meucci.connect.
Same as:
meucci('*').use(callback);
It binds the listener to the event. Those are the exposed events:
meucci.bind('connection:up', function(socket) {});
meucci.bind('connection:down', function(socket) {});
meucci.bind('connection:failed', function(reason) {});
Deletes the listener from the event. When there are no listeners specified, it deletes all the event's callbacks.
Utility. It deletes all the plugins, subscribers and remote methods previously loaded. No communication with the server left.
It represents a path and holds all the main methods. The route object holds besides the path an array of sockets, if specified within meucci.
It links a callback to the route.
meucci('tasks/1').subscribe();
meucci('tasks/1/create').subscribe(callback);
meucci('tasks/:id').subscribe([context callback]);
When path is a pattern (i.e. filled with wildcards), it cannot catch event coming from the server but only from the client.
It also subscribes the callback to all the previously registered sockets.
This function publishes data into the route.
meucci('tasks/1/delete').publish();
meucci('tasks/2/update').publish(task);
meucci('tasks/3/changed').publish(task).fail(handleError);
It's not possible to use wildcards. It first bubbles through the local environment, then to the server and eventually to all the clients subscribed to path.
It returns a promise, whose methods are: then, fail and all the other supported methods from the q library. The promise is employed to handle the results of the action.
When there is an error, fail takes a callback with an error as the only argument. In case of linked sockets it propagates it to them.
It binds a callback to the route and fetches a request.
meucci('local/stat').respond(stat);
meucci('local/theme').respond(theme);
Wildcards are not allowed.
It calls a respond method on the server.
meucci('tasks/create').request(task);
meucci('tasks/1/followers').request().then(callback, handleError);
Wildcards are not allowed and it returns a promise. If any sockets are linked it propagates to them.
It registers a plugin to the route.
meucci('tasks/:id/*').use(tasks.validate);
meucci('tasks/:id/:method').use(notification);
Plugins are called only for incoming server events. Plugins are useful to manipulate the request, filtering it, or blocking.
The route object makes use of the same convention of string interpolation employed in the famous Express framework, so patterns like :id, :id? and * just work.
Here are some examples of correct usage.
// Wrong
publish('tasks/:id').publish(data);
// Correct
publish('tasks/1').publish(data);
subscribe accepts a pattern but they are not bound to the server.
// Only client
meucci('tasks/1/:method').subscribe(callback);
// Client and server
meucci('tasks/1/update').subscribe(callback);
meucci depends upon socket.io, that doesn't currently support any pattern matching. This feature has been already requested. (Issue 434).
Plugins only work when called remotely, either from server or remote client. The subscribe methods doesn't register the event remotely if the path contains a pattern. The publish method bubbles the event locally first, calling the registered subscribers and then the remote ones, telling the server to call the subsequent remote registered clients as well.
subscribe accepts functions whose signatures are like that:
function([param …,] data [, data …]) {}
where param is the value extracted from path and data are the arguments passed to publish.
meucci('tasks/:id/:method').subscribe(function(id, method, attr) {});
meucci('tasks/1/create').publish({'text': 'This is a task'});
use accepts functions which can be signed in two ways, likewise Express:
// Canonical
function(req, res, next) {}
// Error handler
function(err, req, res, next) {}
The res object contains:
res.path - the request pathres.args - arguments passed to the request (used in publish and request)res.rpc - tells if a request has been made through requestres.params - array of parameters extracted from pathres.app - meucci app managing requestres.connection - the socket which the request is coming fromres.done, req.error - functions for telling the outcome of the request to the callerres.end - function that closes the connectionres.send - function for sending datarequest accepts functions whose signatures are like that:
function([param, …] data [, data …] done) {}
where done is the function that return the outcome of the request.
Here are some examples of supported patterns:
Explicit Path.
meucci('date');
Path with a parameter. The extracted segments are available at req.params[N] or req.params.NAME.
meucci('tasks/:id');
Path with several parameters, for instance tasks/1/create and tasks/2/delete.
meucci('tasks/:id/:method');
Path with a mandatory parameter and an optional one, like tasks/1 and tasks/1/delete.
meucci('tasks/:id/:method?');
Path with wildcards, tasks/1 and tasks/2/comment/5.
meucci('tasks/*');
Path with regular expressions.
meucci(\/tasks\/(\d+)\);
(The MIT License)
Copyright © 2013 Daniele Zambuto <mailto:daniele.zambuto@gmail.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.
FAQs
PubSub from Timecolors
We found that meucci demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.