老王 Willin (v0)

Results 39 issues of 老王 Willin (v0)

still this project:

how about 3 level section folders? like gitbook config: ```markdown - [Chapter 1](c1/index.md) - [Section 1](c1/s1/index.md) - [SubSection 1](c1/s1/ss1.md) ``` i want to migrate the gitbook project () to hugo...

when use `exports` err occur test.js: ``` js module.exports = new Proxy({}, { get: (target, property) => (test) => [target, property, test] }); ``` demo.js: ``` js import {test} from...

https://outlook.office365.com/owa/#path=/mail/inbox

client-compatibility

can you give me a config example of nginx? ```conf server { listen 80; server_name *.example.com; location / { proxy_pass http://127.0.0.1:3000/; proxy_redirect off; } } ``` can this one work...

feature

```ts import hostile from 'hostile'; import { promisify } from 'util'; const hostileSet = promisify(hostile.set); Promise.all([ hostileSet('1.2.3.4', 'test1'), hostileSet('1.2.3.5', 'test2'), hostileSet('1.2.3.4', 'test1'), hostileSet('1.2.3.4', 'test3') ]).then(console.log); // [ undefined, undefined, undefined,...

``` proxychains4 curl http://ifconfig.co/ [proxychains] config file found: /usr/local/etc/proxychains.conf [proxychains] preloading /usr/local/Cellar/proxychains-ng/4.12_1/lib/libproxychains4.dylib [proxychains] DLL init: proxychains-ng 4.12 [proxychains] Strict chain ... 127.0.0.1:1111 ... ifconfig.co:80 ... OK xxx.xxx.xxx.xxx ``` test ok.......

### Description v0.13.1 **Minimal code-snippet showcasing the problem** ```ts import { MinLength, Matches, validateSync } from 'class-validator'; class Demo { @MinLength(10, { // here, $constraint1 will be replaced with "10",...

type: fix
status: needs triage

1. 如果是产品服务器的话, 是否需要修改源码将 mock 去掉? 2. mock.js的引入对 webpack 打包(产品环境)有什么样的影响? 3. 下面这样的写法有意义吗? ```js if (process.env.NODE_ENV === 'development') { const Mock = require('./mock'); Mock.start(); } ```