24 lines
778 B
JavaScript
24 lines
778 B
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
|
|
const express = require('express');
|
|
const path = require('path');
|
|
|
|
// Constants
|
|
const PORT = 3000;
|
|
const HOST = '0.0.0.0';
|
|
// App
|
|
const app = express();
|
|
app.get('/', (req, res) => {
|
|
res.send('Hello remote world!\n');
|
|
});
|
|
|
|
// 提供 favicon.ico 静态资源
|
|
app.use('/favicon.ico', express.static(path.join(__dirname, 'favicon.ico')));
|
|
|
|
app.listen(PORT, HOST);
|
|
console.log(`Running on http://${HOST}:${PORT}`); |