const ywot = require('../socket'); // Import direct library const space = require('../space'); writes = new space.Space(); //Generate a place to store potential writes writes.adhoc('hello\nworld') // A method to fill internal data with inline code. main = new ywot.Socket(''); // Open socket main.on('open',()=>{ // When socket opens main.write(writes.towrite([8,16])); // Tell the server to write the content of `writes` to });