Skip to content

Commit

Permalink
some documentation tweaks and add the generated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinTulloss committed Dec 5, 2011
1 parent 554cbb1 commit c0d2ba7
Show file tree
Hide file tree
Showing 22 changed files with 3,141 additions and 8 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Copyright (c) 2011 TJ Holowaychuk
Copyright (c) 2010 Justin Tulloss
Copyright (c) 2010, 2011 Justin Tulloss

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

# node-zeromq

ØMQ bindings for node.js, a fork of [zeromq.node](https://github.com/JustinTulloss/zeromq.node).
ØMQ bindings for node.js

## Installation

$ npm install zeromq
$ npm install zmq

## Example

Expand All @@ -15,7 +15,7 @@ producer.js:
var zmq = require('zeromq')
, sock = zmq.socket('push');

sock.bind('tcp://127.0.0.1:3000');
sock.bindSync('tcp://127.0.0.1:3000');
console.log('Producer bound to port 3000');

setInterval(function(){
Expand All @@ -42,14 +42,14 @@ sock.on('message', function(msg){
## Running tests

Install dev deps:

$ npm install

Build:

$ make

Test:

$ make test

Loading

0 comments on commit c0d2ba7

Please sign in to comment.