nyanstream

0.1.6 • Public • Published

Nyancat stream for node.js

npm install nyanstream

stdout

var nyanStream = require("nyanstream");
var cat = nyanStream();
cat.pipe(process.stdout);
cat.nyan();

tcp

var nyanStream = require("nyanstream");
var net = require("net");
net.createServer(function(socket) {
  nyanStream().nyan().pipe(socket);
}).listen(1337);
telnet localhost 1337

http

var nyanStream = require("nyanstream");
var http = require("http");
http.createServer(function(req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  nyanStream().nyan().pipe(res);
}).listen(8080);
wget -q -O - http://localhost:8080

Thanks to https://github.com/klange/nyancat

Dependents (0)

Package Sidebar

Install

npm i nyanstream

Weekly Downloads

6

Version

0.1.6

License

BSD

Last publish

Collaborators

  • esamatti