Node.js 基础教程

Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行时环境,它让开发者可以使用 JavaScript 来编写服务器端代码。以下是一些 Node.js 基础概念和用法。

安装 Node.js

首先,您需要安装 Node.js。您可以从 Node.js 官网 下载适合您操作系统的版本。

基本概念

  • 模块化:Node.js 使用 CommonJS 模块规范,每个文件都是一个模块。
  • 异步编程:Node.js 使用事件驱动、非阻塞 I/O 模型,这使得它非常适合处理高并发请求。

示例代码

// index.js
const http = require('http');

const server = http.createServer((req, res) => {
  res.writeHead(200, { 'Content-Type': 'text/plain' });
  res.end('Hello, World!\n');
});

server.listen(3000, () => {
  console.log('Server running at http://localhost:3000/');
});

扩展阅读

Node.js Logo