Skip to main content

VSC指定类库文件增强智能感知

· One min read
Alan
Maintainer of blog

有的时候写个demo, 直接页面引用的类库, 导致有些智能感知缺失, 可以在JS的开头增加以下代码增加智能感知:

/// <reference path="../../scripts/vue/types/index.d.ts" />

// 接下来在使用Vue相关方法就会有智能感知了.

How to Setup Reverse Proxy on IIS with URL-Rewrite

· 3 min read

Most of the system administrator is aware of the reverse proxy. It is a type of proxy server which fetches the resources from one or more computers on clients requests and send back to the client. In simple terms, it works as an intermediate server, which listens to clients query. Then requests to server bases of clients query and returns results to client sent by the server. This tutorial will help you to setup reverse proxy using IIS with URL rewrite and application request routing extension.