-
Notifications
You must be signed in to change notification settings - Fork 1k
Dart (ES)
Busindre edited this page Nov 3, 2016
·
1 revision
El servidor websocketd funciona escribiendo a través stdin y leyendo desde stdout.
Aquí hay un simple programa llamado echo.dart
que lee líneas stdio y escribe una respuesta básica.
import 'dart:io';
import 'dart:convert';
main() {
stdin
.transform(SYSTEM_ENCODING.decoder)
.transform(new LineSplitter())
.listen((data) => print('You sent me : $data'));
}
Usted puede ejecutarlo de la siguiente manera:
websocketd dart echo.dart
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