当前位置 : 主页 > 软件教程 > word >

vscode怎么引用js

来源:互联网 收集:自由互联 发布时间:2021-08-20
vscode怎么引用js? VS code nodejs 调用js文件 1. 新建文件 server.js 相关教程推荐:vscode教程 var http = require(http);http.createServer(function (request, response) { // 发送 HTTP 头部 // HTTP 状态值: 200 : OK //

vscode怎么引用js?

VS code nodejs 调用js文件

1. 新建文件 server.js

相关教程推荐:vscode教程

var http = require('http');
http.createServer(function (request, response) {
    // 发送 HTTP 头部 
    // HTTP 状态值: 200 : OK
    // 内容类型: text/plain
    response.writeHead(200, {'Content-Type': 'text/plain'});
    // 发送响应数据 "Hello World"
    response.end('Hello World\n');
}).listen(8888);
// 终端打印如下信息
console.log('Server running at http://127.0.0.1:8888/');

2. 在Terminal中输入 node server 或 node server.js

输出: Server running at http://127.0.0.1:8888/

3. 在浏览器中输入 http://127.0.0.1:8888/

浏览器显示:Hello World

以上就是vscode怎么引用js的详细内容,更多请关注自由互联其它相关文章!

网友评论