Skip to content
This repository has been archived by the owner on Mar 30, 2022. It is now read-only.

Corrected some issues in the readme and jazz'd it up a bit #25

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Edited README.md to update the worker source example so that sys was …
…required and available so that the termination message can be printed out.
dansdocs committed Aug 17, 2011

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 5aa15e3fe88a6d53b49fd1352e30684d228f273d
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -28,6 +28,7 @@ See the design document

#### Worker source
```javascript
var sys = require('sys');
onmessage = function(e) {
postMessage({ test : 'this is a test' });
};