NestJS
Post in
二 18 一月 2022
Overview
- Nest深受Angular的影响,借鉴了NG的一些列前端设计思路,特别是其代码结构。让Angular易于开发大型前端的优势也发挥在Node服务器端。
- 模块化:高度可测试,可扩展,松散耦 …
Error: unable to get local issuer certificate:
法一:
async apiLoader(endpoint, forceUpdate = false) {
try {
const token = await this.getToken();
const { data } = await axios.get(endpoint, {
headers: {
'X-SAP-LogonToken': token …
SI. No. | Description | REST API | Http Methods |
---|---|---|---|
1 | Logon using username and password | http://host: |
GET,POST |
2 | Logoff (token must be in Header) | http … |
https://eggjs.org/zh-cn/intro/index.html
Sails 是和 Egg 一样奉行『约定优于配置』的框架,扩展性也非常 …
单元测试是检测一小段代码的良好实践,典型的单元测试 …
正向代理代理的对象是客户端,反向代理代理的对象是服务端 …
Nginx 比 Apache 高并发的原因
Nginx 负载均衡调度算法 负载均衡之轮询算法
Apache 多进 …
安装 mysql
brew install mysql
启动 mysql
service mysqld start
登录 mysql
mysql -u root -p
mysql -u root -p --ssl
mysql -u root -p --ssl-mode-required
退 …
brew install redis
redis-server
stop: Ctrl-C.
brew services start redis
brew services list
brew services stop redis # stop
链接:https://www.jianshu.com/p/4f7353cd5805
Sequelize 是一款基于 Nodejs 功能强大的异步 ORM 框架。 同时支持 PostgreSQL …