node start - hello world http server

Write a file t1.js

‘use strict‘;

const express = require(‘express‘);

// Constants
const PORT = 8080;

// App
const app = express();
app.get(‘/‘, function (req, res) {
  res.send(‘Hello world\n‘);
});

app.listen(PORT);
console.log(‘Running on http://localhost:‘ + PORT);

运行

node t1.js

在浏览器输入

http://localhost:8080/

 
时间: 2024-10-07 06:29:53

node start - hello world http server的相关文章

使用Node.js快速搭建WebSocket server

安装 npm install ws 服务端 server.js var WebSocketServer = require('ws').Server   , wss = new WebSocketServer({port: 8080}); wss.on('connection', function(ws) {     ws.on('message', function(message) {         console.log('received: %s', message);     });

Installation Oracle11gR2 RAC One Node on SuSE Linux Enterprise Server 11SP2 ( 一 )

1.部署环境 操作系统:SuSE Linux Enterprise Server 11SP2 数据库:Oracle 11gR2(112040) 共享存储: 设备名 大小 /dev/sdb 2g /dev/sdc 10g /dev/sdd 20g 2. 创建账户 groupadd -g 1000 oinstall    groupadd -g 1200 asmadmin   groupadd -g 1201 asmdba    groupadd -g 1202 asmoper    useradd

node mssql 无法连接sql server

mssql无法连接sql server主要有两种原因: Sql server使用的是Windows身份验证 Sql server并没有打开网络连接功能 1.打开Sql Server身份验证 参考这篇文章:sqlserver设置身份验证登录 2.打开网络连接 参考这篇文章:SQL server 2014 1433端口开启解决方案 先测试端口是否打开,没打开,就依照步骤打开端口 原文地址:https://www.cnblogs.com/xiyu714/p/10126222.html

SQL Server 诊断查询-(1)

SQL and OS Version information for current instance SELECT @@SERVERNAME AS [Server Name], @@VERSIONAS [SQL Server and OS Version Info]; Query #2 is Core Counts. Get socket, physical core and logical core count from the SQL Server Error log. EXEC sys.

[MEAN Stack] First API -- 7. Using Route Files to Structure Server Side API

Currently, the server.js is going way too long. In the real world application, it is likely that we are going to deal with more routers, whichi means it growing even longer. A single file which has too many lines of code whcih means code small. We ar

node.js EventEmitter发送和接收事件

EventEmitter是nodejs核心的一部分.很多nodejs对象继承自EventEmitter,用来处理事件,及回调.api文档地址: http://nodejs.org/api/events.html#events_class_events_eventemitter Event: Many objects in Node emit events: a net.Server emits an event each time a peer connects to it, a fs.read

Node.js的基础学习1

nodejs   windows下的调用方法: C:\Users\owen>node helloworld.jsHello WorldHello: 25 C:\Users\owen>node getmodule.jsHello BYVoid C:\Users\owen>node app.jsHTTP Server is listening at port 3000 或者 C:\Users\owen>node> require ('./app.js');HTTP Server

Node 与 Thrift

背景:公司要用Node与其他语言(Java)写的服务通信. 1,服务端 helloServer.js var thrift = require('thrift'); var helloService = require('./HelloService'); var server = thrift.createServer(helloService, {     hello: function(para, success){         console.log("para: " + 

KoaHub.js可借助 Babel 编译稳定运行在 Node.js 环境上

koahubjs KoaHub.js -- 基于 Koa.js 平台的 Node.js web 快速开发框架.可以直接在项目里使用 ES6/7(Generator Function, Class, Async & Await)等特性,借助 Babel 编译,可稳定运行在 Node.js 环境上. 介绍 KoaHub.js -- 基于 Koa.js 平台的 Node.js web 快速开发框架.可以直接在项目里使用 ES6/7(Generator Function, Class, Async &am