此博客是关于Node.js平台的,这是构建可扩展可靠的Web应用程序的流行选择。它涵盖了广泛的主题,包括:
- 开始使用node.js
- 使用node.js 构建Web应用程序
- 使用node.js进行微服务
- 确保Node.js应用程序
- 优化node.js绩效
- 部署node.js应用程序
安装
- 转到 https://nodejs.org/en 。
- 下载LTS版本。
- 接受所有条款并安装。
- 现在检查节点是否是通过在超终端上键入 node-version 在计算机中安装的。
通过节点运行JS文件
- 打开VS代码终端。
- 键入节点 - version 获取节点版本,还检查节点的安装。
- 转到使用 CD“ JS文件的地址”存储JS文件的目录。
- 现在type 节点yourfilename.js (例如:node index.js)并点击输入。
反应天然模块
const fs = require("fs")//file system
//For writing some text in a text file named message.txt using fs writefile module
fs.writeFile("message.txt","Hello, World!",(err)=>{
if (err) throw err;
console.log("The file has been saved");
});
//For reading some text from a text file named msg.txt using fs readfile module
fs.readFile("./msg.txt","utf8",(err,data)=>{
if (err) throw err;
console.log(data);
});
NPM软件包管理器
让我们必须使用节点生成一个随机的超级英雄名称,然后涉及以下步骤以生成超级英雄名称。
- 打开VS代码终端。
- 初始npm cring npm init 。
- 使用 npm i Superheroes 。 安装npm pacakges
- 打开软件包。
- 现在打开JS文件并键入以下代码。
import superheroes from "superheroes";
const name = superheroes.random();
console.log(name);