0.0.4 • Published 12 years ago

caps-lock v0.0.4

Weekly downloads
3
License
-
Repository
github
Last release
12 years ago

CAPS-LOCK

THIS MODULE TURNS ON AND OFF CAPS LOCK IN YOUR JAVASCRIPT PROGRAM.

EXAMPLES

LOG

require('caps-lock').ENGAGE();

console.log('beep boop');

BEEP BOOP

ON/OFF

YOU CAN TURN CAPS LOCK OFF TOO BUT YOU SHOULD ONLY DO THAT SO YOU CAN TURN IT ON.

var CAPSLOCK = require('caps-lock');
CAPSLOCK.ENGAGE();

console.log('you had better believe that caps lock is fucking engaged');

CAPSLOCK.DISENGAGE();

console.log('what is this lowercase noise');

YOU HAD BETTER BELIEVE THAT CAPS LOCK IS FUCKING ENGAGED
what is this lowercase noise

HTTP SERVER

require('caps-lock').ENGAGE();

var http = require('http');
var server = http.createServer(function (req, res) {
    res.end('beep boop: ' + req.url + '\n');
});
server.listen(8001);

$ curl localhost:8001/abcdef
BEEP BOOP: /ABCDEF

INSTALL

WITH NPM DO:

npm install caps-lock

LICENSE

MIT

0.0.4

12 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago

0.0.0

12 years ago