Skip to content

Commit c1152b3

Browse files
committed
first pass at sphinx docs
1 parent f19bb4e commit c1152b3

File tree

7 files changed

+699
-129
lines changed

7 files changed

+699
-129
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules/
2+
_build/

README.md README.rst

+29-25
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,81 @@
1-
NodeJS IRC client library
2-
=========================
1+
`node-irc`_ is an IRC client library written in JavaScript_ for Node_.
32

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
58
-------------
69

7-
The easiest way to get it is via [npm][]
10+
The easiest way to get it is via npm_::
811

912
npm install irc
1013

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::
1316

1417
npm link /path/to/your/clone
1518

1619
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_!
1821

19-
How to use it
22+
Basic Usage
2023
-------------
2124

2225
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::
2427

2528
var irc = require('irc');
2629
var client = new irc.Client('irc.dollyfish.net.nz', 'myNick', {
27-
channels: ['#blah'],
30+
channels: ['#blah'],
2831
});
2932

3033
Of course it's not much use once it's connected if that's all you have!
3134

3235
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::
3538

3639
client.addListener('message', function (from, to, message) {
37-
console.log(from + ' => ' + to + ': ' + message);
40+
console.log(from + ' => ' + to + ': ' + message);
3841
});
3942

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::
4144

4245
client.addListener('pm', function (from, message) {
43-
console.log(from + ' => ME: ' + message);
46+
console.log(from + ' => ME: ' + message);
4447
});
4548

46-
or to a particular channel:
49+
or to a particular channel::
4750

4851
client.addListener('message#yourchannel', function (from, message) {
49-
console.log(from + ' => #yourchannel: ' + message);
52+
console.log(from + ' => #yourchannel: ' + message);
5053
});
5154

52-
At the moment there are functions for joining:
55+
At the moment there are functions for joining::
5356

5457
client.join('#yourchannel');
5558

56-
parting:
59+
parting::
5760

5861
client.part('#yourchannel');
5962

60-
talking:
63+
talking::
6164

6265
client.say('#yourchannel', "I'm a bot!");
6366
client.say('nonbeliever', "SRSLY, I AM!");
6467

6568
and many others. Check out the API documentation for a complete reference.
6669

6770
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::
6972

7073
client.send('MODE', '#yourchannel', '+o', 'yournick');
7174

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
7578
writing it.
7679

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

Comments
 (0)