-
Notifications
You must be signed in to change notification settings - Fork 1k
Node.js (ES)
Busindre edited this page Nov 3, 2016
·
1 revision
Websocketd funciona con saltos de linea. La función String.trim()
le ayudará a trabajar con ello, pero no olvide indicar un salto de linea al final de los mensajes que se quieran enviar.
script.js
// Start listening
process.stdin.resume()
process.stdin.setEncoding('utf8')
// Receive data from WebSocket - STDIN
process.stdin.on( 'data', function( data ) {
// Send data to WebSocket client - STDOUT
process.stdout.write( JSON.stringify({ text: data.trim() }) +'\n' )
})
websocketd nodejs script.js
The websocketd user guide is a publicly editable wiki. Please contribute!
Getting Started
Reference
Language specific
Advanced: Internals
Spanish Websocket Wiki
Primeros pasos
Referencia
Lenguajes
Avanzado