摘要:
图形资源 起司 空间遥感众享服务平台 https://www.cheesi.cn/frontground/index.html#/ 飞马云播 http://monitor.feimarobotics.com/monitor/detail4mobile?local_id=d102f033d51d4e6 阅读全文
摘要:
nodejs - 常规操作与插件 包冲突时,强行通过 npm install --force 1. nodemon 修改代码后,需要重新启动 Express 应用,所做的修改才能生效。若之后的每次代码修改都要重复这样的操作,势必会影响开发效率,本文将详细介绍Nodemon,它会监测项目中的所有文件, 阅读全文
摘要:
nodejs + express + mongodb 项目搭建 1. mongodb 安装:https://www.cnblogs.com/1285026182YUAN/p/14092002.html 2. 创建express项目:https://www.cnblogs.com/1285026182 阅读全文
摘要:
nodejs + express 项目初始化 1. express卸载 npm uninstall -g express 2. 安装express 指定版本 npm install -g express@3.5.0 3. 安装express 最新版本 npm install express -g 4 阅读全文
摘要:
mongodb - windows部署与开发 一. 下载安装包: 下载地址:https://www.mongodb.com/try/download/enterprise 二. 客户端连接工具: Studio 3T 其他工具参考: https://www.cnblogs.com/operationh 阅读全文
摘要:
HG - 常用命令 下载:http://www.121down.com/soft/softview-101275.html#downaddress 阅读全文
摘要:
前端框架VUE- 常规操作 1. VUE-Windows系统下搭建vue环境 https://www.cnblogs.com/1285026182YUAN/p/10540602.html 2. 清除npm 缓存 npm cache clean --force 安装插件 npm install --r 阅读全文
摘要:
NETCORE - JWT认证与授权 1. 安装NuGet包:JwtBearer 2. 配置 签名参数 { "Logging": { "LogLevel": { "Default": "Information", "Microsoft": "Warning", "Microsoft.Hosting. 阅读全文
摘要:
Docker - 部署Consul 本文为 Consul服务的部署,接口的注册请参考:NETCORE - Consul 注册 案例一 1. 下载镜像 #docker pull docker.io/consul:latest 2. 启动第一个consul节点 docker run --name con 阅读全文
摘要:
前端框架JavaScript - 常规操作 1. 浏览器宽度高度 <script type="text/javascript"> $(function () { alert($(window).height()); //浏览器时下窗口可视区域高度 alert($(document).height() 阅读全文