【node】Node.js的常用内置模块:
在Node.js中,有许多内置的模块可以使用,以下是一些常见的Node.js内置模块:
http
:这是Node.js的核心模块之一,用于创建HTTP服务器。
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(3000, "127.0.0.1");
console.log('Server running at http://127.0.0.1:3000/');
fs
:这是Node.js的文件系统模块,用于文件的读写操作。
var fs = require("fs");
fs.readFile('sample.txt', function (err, data) {
if (err) throw err;
console.log(data);
});
url
:这个模块用于处理URL字符串。
var url = require('url');
var a = url.parse('http://www.example.com:8000/pathname/?search=test');
console.log(a.href);
console.log(a.protocol);
console.log(a.host);
path
:这个模块用于处理文件路径。
var path = require('path');
console.log(path.join('/foo', 'bar', 'baz/asdf', 'quux', '..'));
os
:这个模块用于提供有关操作系统的信息。
var os = require('os');
console.log('Total memory : ' + os.totalmem() + ' bytes.');
console.log('Free memory : ' + os.freemem() + ' bytes.');
crypto
:这个模块用于加密操作。
var crypto = require("crypto");
var hash = crypto.createHash("sha256");
hash.update("Hello World");
console.log(hash.digest("hex"));
querystring
:这个模块用于解析和格式化URL查询字符串。
var querystring = require('querystring');
var str = 'nick=caoyc&age=24';
var obj = querystring.parse(str);
console.log(obj.nick);
dns
:这个模块用于处理DNS相关的操作。
var dns = require('dns');
dns.lookup('www.google.com', function onLookup(err, address, family) {
console.log('ipv4 or ipv6:', address);
});
events
:这个模块用于创建事件发射器和监听器。
var EventEmitter = require('events').EventEmitter;
var eventEmitter = new EventEmitter();
eventEmitter.on('event', function() {
console.log('An event occurred!');
});
eventEmitter.emit('event');
stream
:这个模块为流提供了一个抽象接口。
var Stream = require('stream').Stream;
var stream = new Stream();
stream.readable = true;
stream.write('Hello, ');
stream.write('world!');
stream.end();
stream.on('data', function(chunk) {
console.log(chunk);
});
stream.on('end', function() {
console.log('Stream ended!');
});
以上是一些常用的Node.js内置模块及其使用示例。每个模块都有其特定的功能,可以根据需要进行使用。
评论已关闭