knilink
knilink
in terms of performance, I found this wasm library https://github.com/styladev/bcrypt-fast-wasm and tested it under node@14 by comparing pwd `B9qY1mIQYqmUZSeuoPD7` and hash `$2a$18$7FBSfQmfL/xxL5i6SGmAKOafa/9RduerptAbTDQcFHEvet5lDuYrm` ```js const bcryptfast = require('bcrypt-fast'); const bcryptjs =...
I think the original idear of "setImmediate", "safeRenderCompletion" stuff is "trying to catch exceptions thrown by getWidget". I would highly recommend that "getWidget" should return a default widget, or similar...
Just in case anyone is interested. I'm currently working on a visual formbuilder. [Repo](https://github.com/knilink/react-jsonschema-formbuilder), [Demo](https://knilink.github.io/react-jsonschema-formbuilder) It's still under construction. 
Hi @epicfaace, I'm still maintaining it but unfortunately I'm refactoring it and moving away from rjsf because its flexibility doesn't satisfy my need, although it has been improved a lot...
I think is this line https://github.com/txs1992/stylus-converter/blob/633a00af4dd6e3856b60d4cf0b0829285665d5a3/src/visitor/index.js#L246 should be ```js return before + selector + block ```
maybe this line https://github.com/txs1992/stylus-converter/blob/633a00af4dd6e3856b60d4cf0b0829285665d5a3/src/visitor/index.js#L569 should be ```js return `${OPEARTION_MAP[op] || op}(${visitNode(expr)})` ``` or check undefined in `visitExpression`
@eddyzhang1986 感觉即使是有一个支持动态表单的解决方案(曾经想过套用mongodb的查询语法来描述条件),那它肯定是一个蹩脚的脚本语言。那和直接用js写没啥区别。
@eddyzhang1986 确实,只能死马当活马医。话说基于antd的rjsf widgets lib做吗?我自己平时也会用到。但是建repo的话没那么多精力去维护。
Hi, are you still looking for an antd json schema form. I published one recently https://github.com/gravel-form/antd-form [Here](https://gravel-form.github.io/antd-form/basic) is the playground. It's not base on rjsf. I'm using a middleware approach...
one workaround is ```js import { promisify, callbackify } from 'node:util'; callbackify(promisify(pool.query)).call(pool, ...); ``` as mentioned in the doc "Context loss" sesstion: > If your code is callback-based, it is...