/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/rn-tester/js/examples/WebSocket/http_test_server.js
33 строки
708 B
Gijs Weterings
Flow strictify xplat/js/react-native-github where possible (#41051)
18 окт 2023, 15:36
18 окт 2023, 15:36
67c1a80
Код
Авторство
О чём код?
#!/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 */ console.log(`\ Test server for WebSocketExample This will set a cookie named "wstest" on the response of any incoming request. `); const connect = require('connect'); const http = require('http'); const app = connect(); app.use(function (req, res) { console.log('received request'); res.setHeader('Set-Cookie', ['wstest=OK; Path=/']); res.end('Cookie has been set!\n'); }); http.createServer(app).listen(5556);