Node.js 创建第一个应用
Node.js 创建第一个应用在传统的PHP 开发中,需要一个像Apache 或Nginx 这样的HTTP 服务器,并且需要配置mod_php 或php-cgi 来处理PHP 脚本,从而生成动态内容, ...
Node.js server without a framework
This article shows a static file server built in Node.js without using any frameworks. The current state of Node.js is such that almost everything we need for ...
Day7
這個例子裡,我們載入一個http 原生module。下一步,我們使用http提供的createServer()去建立一個http Server,它包含回呼函式並使用用request及response 參數。
前端工程師邁向後端之路4
前端工程師邁向後端之路4 – 用Node.js 架設http server · 1. 安裝TypeScript 及建立Node.js 環境 · 2. Install dependecies · 3. 建立debug 的config 檔.
用Node.js 寫一個簡單的伺服器
下載Node.js 之後,執行環境中即包含http 原生模組,可以先用 require 取得這個模組,再套用模組的createServer 方法在本機建立伺服器。 建立的伺服器可透過 ...
HTTP
The HTTP interfaces in Node.js are designed to support many features of the protocol which have been traditionally difficult to use. HTTP/2 · Net · Https api · URL
Node.js
Node.js is a free, open-source, cross-platform JavaScript runtime environment that lets developers create servers, web apps, command line tools and scripts. Node.js · Installing Node.js via package... · Download Node · Releases
http-server
http-server is a simple, zero-configuration command-line static HTTP server. It is powerful enough for production usage, but it's simple and hackable enough to ...
Node.js HTTP Module
The HTTP module's createServer() method creates an HTTP server that listens for requests on a specified port and executes a callback function for each request. Node.js File System Module · http.createServer() Method · Run example