Nest.js是一个渐进式 Node.js 框架,用于构建高效、可靠且可扩展的服务器端应用程序。
官网地址:https://ezdoc.cn/docs/nestjs/
一,Nodejs环境搭建
1,在windows环境下安装node.js和npm,下载地址:https://nodejs.org/en/
2,查看安装路径,环境变量(会自动添加)和版本
3,运行命令配置node_cache和node_global
npm config set prefix "D:\Program Files\Develop\nodejs\node_global"
npm config set cache "D:\Program Files\Develop\nodejs\node_cache"
4,配置镜像提升速度
npm config set registry=http://registry.npm.taobao.org
5,查看所有配置
npm config list
6,下面是配置文件路径
7,添加环境变量
NODE_PATH = D:\Program Files\Develop\nodejs\node_global\node_modules
注意: 默认的模块目录:D:\Program Files\Develop\nodejs\node_modules,要变为D:\Program Files\Develop\nodejs\node_global\node_modules,
如果直接运行npm install等命令会报错的。
8,重新打开cmd,使上面配置生效
9,使用npm安装命令安装/更新npm模块,-g表示全局(注意:如果使用-g,请使用以管理员的身份打开终端)
npm install npm -g
二,TypeScript开发入门
1,安装TypeScript
npm i typescript -g
,
2,创建MyDemo文件夹,并在根目录创建index.html
编辑index.html,然后输入!+tab快捷键生成html头部内容
script中引入index.js
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>
点击查看代码
const person = {
name: '张三',
age: 18
}
console.info(`我叫${person.name}, 我今年${person.age}岁了`)