mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
67c1a806e6
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/41051 Strictifies flow to flow strict-local in files where doing that doesn't cause new flow errors. Changelog: Internal Reviewed By: yungsters Differential Revision: D50369011 fbshipit-source-id: b4a5a26b839b7327a3178e6f5b35246dea365a38
39 lines
871 B
JavaScript
Executable File
39 lines
871 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/* eslint-env node */
|
|
|
|
const WebSocket = require('ws');
|
|
|
|
console.log(`\
|
|
WebSocket integration test server
|
|
|
|
This will send each incoming message back, with the string '_response' appended.
|
|
An incoming message of 'exit' will shut down the server.
|
|
|
|
`);
|
|
|
|
const server = new WebSocket.Server({port: 5555});
|
|
server.on('connection', ws => {
|
|
ws.on('message', message => {
|
|
console.log('Received message:', message);
|
|
if (message === 'exit') {
|
|
console.log('WebSocket integration test server exit');
|
|
process.exit(0);
|
|
}
|
|
ws.send(String(message) + '_response');
|
|
});
|
|
|
|
ws.send('hello');
|
|
});
|