|
1 |
| -NodeJS IRC client library |
2 |
| -========================= |
| 1 | +`node-irc`_ is an IRC client library written in JavaScript_ for Node_. |
3 | 2 |
|
4 |
| -How to get it |
| 3 | +.. _`node-irc`: http://node-irc.readthedocs.org/ |
| 4 | +.. _JavaScript: http://en.wikipedia.org/wiki/JavaScript |
| 5 | +.. _Node: http://nodejs.org/ |
| 6 | + |
| 7 | +Installation |
5 | 8 | -------------
|
6 | 9 |
|
7 |
| -The easiest way to get it is via [npm][] |
| 10 | +The easiest way to get it is via npm_:: |
8 | 11 |
|
9 | 12 | npm install irc
|
10 | 13 |
|
11 |
| -If you want to run the latest version (i.e. later than the version available |
12 |
| -via [npm][]) you can clone this repo, then use [npm][] to link-install it: |
| 14 | +If you want to run the latest version (i.e. later than the version available via |
| 15 | +npm_) you can clone this repo, then use npm_ to link-install it:: |
13 | 16 |
|
14 | 17 | npm link /path/to/your/clone
|
15 | 18 |
|
16 | 19 | Of course, you can just clone this, and manually point at the library itself,
|
17 |
| -but I really recommend using [npm][]! |
| 20 | +but I really recommend using npm_! |
18 | 21 |
|
19 |
| -How to use it |
| 22 | +Basic Usage |
20 | 23 | -------------
|
21 | 24 |
|
22 | 25 | This library provides basic IRC client functionality. In the simplest case you
|
23 |
| -can connect to an IRC server like so: |
| 26 | +can connect to an IRC server like so:: |
24 | 27 |
|
25 | 28 | var irc = require('irc');
|
26 | 29 | var client = new irc.Client('irc.dollyfish.net.nz', 'myNick', {
|
27 |
| - channels: ['#blah'], |
| 30 | + channels: ['#blah'], |
28 | 31 | });
|
29 | 32 |
|
30 | 33 | Of course it's not much use once it's connected if that's all you have!
|
31 | 34 |
|
32 | 35 | The client emits a large number of events that correlate to things you'd
|
33 |
| -normally see in your favourite IRC client. Most likely the first one you'll |
34 |
| -want to use is: |
| 36 | +normally see in your favourite IRC client. Most likely the first one you'll want |
| 37 | +to use is:: |
35 | 38 |
|
36 | 39 | client.addListener('message', function (from, to, message) {
|
37 |
| - console.log(from + ' => ' + to + ': ' + message); |
| 40 | + console.log(from + ' => ' + to + ': ' + message); |
38 | 41 | });
|
39 | 42 |
|
40 |
| -or if you're only interested in messages to the bot itself: |
| 43 | +or if you're only interested in messages to the bot itself:: |
41 | 44 |
|
42 | 45 | client.addListener('pm', function (from, message) {
|
43 |
| - console.log(from + ' => ME: ' + message); |
| 46 | + console.log(from + ' => ME: ' + message); |
44 | 47 | });
|
45 | 48 |
|
46 |
| -or to a particular channel: |
| 49 | +or to a particular channel:: |
47 | 50 |
|
48 | 51 | client.addListener('message#yourchannel', function (from, message) {
|
49 |
| - console.log(from + ' => #yourchannel: ' + message); |
| 52 | + console.log(from + ' => #yourchannel: ' + message); |
50 | 53 | });
|
51 | 54 |
|
52 |
| -At the moment there are functions for joining: |
| 55 | +At the moment there are functions for joining:: |
53 | 56 |
|
54 | 57 | client.join('#yourchannel');
|
55 | 58 |
|
56 |
| -parting: |
| 59 | +parting:: |
57 | 60 |
|
58 | 61 | client.part('#yourchannel');
|
59 | 62 |
|
60 |
| -talking: |
| 63 | +talking:: |
61 | 64 |
|
62 | 65 | client.say('#yourchannel', "I'm a bot!");
|
63 | 66 | client.say('nonbeliever', "SRSLY, I AM!");
|
64 | 67 |
|
65 | 68 | and many others. Check out the API documentation for a complete reference.
|
66 | 69 |
|
67 | 70 | For any commands that there aren't methods for you can use the send() method
|
68 |
| -which sends raw messages to the server: |
| 71 | +which sends raw messages to the server:: |
69 | 72 |
|
70 | 73 | client.send('MODE', '#yourchannel', '+o', 'yournick');
|
71 | 74 |
|
72 |
| -All commands and events are documented in `API.md` (hopefully). If you find any |
73 |
| -methods/events missing that you'd really like to have included feel free to |
74 |
| -send me a pull request (preferred) or file an issue and I'll try get around to |
| 75 | +All commands and events are documented here_ (hopefully). If you find any |
| 76 | +methods/events missing that you'd really like to have included feel free to send |
| 77 | +me a pull request (preferred) or file an issue and I'll try get around to |
75 | 78 | writing it.
|
76 | 79 |
|
77 |
| -[npm]: http://github.com/isaacs/npm |
| 80 | +.. _npm: http://github.com/isaacs/npm |
| 81 | +.. _here: http://node-irc.readthedocs.org/en/latest/API.html |
0 commit comments