From 891700a8db03204459ceeca883d8692b6b82389d Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Wed, 18 Dec 2019 01:08:33 -0500 Subject: added lightweight spammer --- examples/spam.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 examples/spam.js (limited to 'examples') diff --git a/examples/spam.js b/examples/spam.js new file mode 100644 index 0000000..6b822d2 --- /dev/null +++ b/examples/spam.js @@ -0,0 +1,16 @@ +// Sorry about writing this, but I want to maintain a notif about the API +const socket = require('../socket'); +const space = require('../space'); + +let text = new space.Space(); +text.adhoc("For a node.js YWOT api:\n&&http://github.com/feynmansfedora/ywot-clean"); +let out = text.towrite([-6,20]); + +let main = new socket.Socket(); + +function write(){ + main.write(out.slice()); + console.log('set'); + setTimeout(write,2000); +} +main.on('open',write); -- cgit