UNPKG

nextgen-events

Version:

The next generation of events handling for javascript! New: abstract away the network!

113 lines (84 loc) 3.68 kB
#!/usr/bin/env node /* Next-Gen Events Copyright (c) 2015 - 2021 Cédric Ronvel The MIT License (MIT) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ var NGEvents = require( '../lib/NextGenEvents.js' ) ; //var emitter = new NGEvents() ; var WebSocket = require( 'ws' ) ; var ws = new WebSocket( 'ws://127.0.0.1:12345' ) ; // Create a proxy for the server var proxy = new NGEvents.Proxy() ; ws.on( 'open' , function open() { // Add the remote service we want to access proxy.addRemoteService( 'awesomeService' ) ; // Listen to the event 'heartBeat' on this service proxy.remoteServices.awesomeService.on( 'heartBeat' , function( beat ) { console.log( '\n>>> Heart Beat (%d) received! (sync listener)\n' , beat ) ; } ) ; proxy.remoteServices.awesomeService.on( 'heartBeat' , function( beat , callback ) { var timeout = Math.floor( Math.random() * 10000 ) ; console.log( '\n>>> Heart Beat (%d) received! (async listener: %dms)\n' , beat , timeout ) ; setTimeout( function() { console.log( '\n>>> Heart Beat (%d) finished! (async listener: %dms)\n' , beat , timeout ) ; callback() ; } , timeout ) ; } , { async: true } ) ; proxy.remoteServices.awesomeService.on( 'hello' , function( text , callback ) { var timeout = Math.floor( Math.random() * 10000 ) ; console.log( '\n>>> Hello received: %s (async listener: %dms)\n' , text , timeout ) ; setTimeout( function() { console.log( '\n>>> Hello (%s) finished! (async listener: %dms)\n' , text , timeout ) ; callback() ; } , timeout ) ; } , { async: true } ) ; // Add the remote service we want to access proxy.addRemoteService( 'clockService' ) ; // Listen to the event 'heartBeat' on this service proxy.remoteServices.clockService.once( 'time' , function( time ) { console.log( '\n>>> Time received: %s\n' , time ) ; proxy.remoteServices.awesomeService.emit( 'hello' , 'Hello world!' , function() { console.log( '\n\n\n\t\t\t>>> hello callback! <<<\n\n\n' ) ; } ) ; } ) ; } ) ; ws.on( 'message' , function( message ) { //proxy.receive( message ) ; try { message = JSON.parse( message ) ; } catch ( error ) { return ; } ws.emit( 'messageObject' , message ) ; } ) ; ws.on( 'messageObject' , function incoming( message ) { console.log( 'received: ' , message ) ; // Do something with message proxy.receive( message ) ; } ) ; proxy.receive = function receive( raw ) { proxy.push( raw ) ; //try { proxy.push( JSON.parse( raw ) ; } catch ( error ) {} } ; proxy.send = function send( message ) { ws.send( JSON.stringify( message ) ) ; } ; ws.on( 'close' , function close() { console.log( 'connection closed' ) ; proxy.destroy() ; } ) ;