Prabhanjan

Results 39 comments of Prabhanjan

Me too! Any updates? at least release docs

Just saw this repo in trending, kudos to the authors for a great tool. you mentioned that fnm targets speed and performance as primary goals. I personally use [NVS](https://github.com/jasongin/nvs) myself....

Not sure I understand correctly, I am having trouble getting value from both `LineEdit` and `PlainTextEdit`. I am using functional component not sure If I can create refs there. Is...

I got till the point to get the text on changed from LineEdit Component. I used ```js const handleChange = useEventHandler( { returnPressed: () => console.log("Return pressed", phone), textChanged: text...

Yep,the `state` variable works in this case, but the issue is when you try to get it from a button click event (possibly even on enter pressed). Pasting my exact...

Following comments from #610 someone made a electron template for react that targets security only. take a look at [secure-electron-template)](https://github.com/reZach/secure-electron-template). `preload.js` from this project is a good example of how...

same problem as #229 , temporarily using `(User as any).register()`, I don't really want that. someone please fix typings.

Solved: ```ts import { Document, PassportLocalDocument, PassportLocalModel, PassportLocalSchema } from "mongoose"; interface User extends PassportLocalDocument { username: string; password: string; } const UserSchema = new Schema( { username: String, password:...

+1 for this, CDN feature should be optional in my opinion. especially for desktop apps created with electron, it's not feasible to connect CDN everytime. for now using ```js setCDN("/node_modules/shiki/");...

unstable is understandable, but why would it be dangerous? any security implications?