Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Prozess is a Kafka library for node.js

There are two low-level clients: The Producer and the Consumer:

##Producer example:
## Producer example:

```javascript
var Producer = require('Prozess').Producer;
Expand Down Expand Up @@ -38,7 +38,7 @@ setInterval(function(){
}, 1000);
```

##Consumer example:
## Consumer example:

```javascript
var Consumer = require('Prozess').Consumer;
Expand Down Expand Up @@ -75,7 +75,7 @@ var options = {
};
```

##Documentation
## Documentation

### `var producer = new Producer(options)`

Expand Down Expand Up @@ -156,17 +156,17 @@ You can pass `.send()` an optional options argument to
You must also supply a `Callback` to handle any asynchronous
errors.

##Installation:
## Installation:

npm install prozess

##Checkout the code and run the tests:
## Checkout the code and run the tests:

$ git clone https://github.com/cainus/Prozess.git
$ cd Prozess ; make test-cov && open coverage.html


##Kafka Compatability matrix:
## Kafka Compatability matrix:

<table>
<tr>
Expand Down