Jovica Aleksic

Results 18 issues of Jovica Aleksic

Consider these two functions: Using destructuring: ``` function createUser({name, age, email}) { console.log({name, age, email}); // ... } ``` Regular: ``` function createUser(name, age, email) { console.log(name, age, email); //...

answered

When the dev tool is launched in an undocked window with a given size, it uses that size for his own rendering space, but it doesn't update that when you...

Apparently, only requires from `node_modules` are listed in the require graph. Your "own" modules from e.g. the `src` directory are not shown. I use `require('devtron').install();` and the devtron tab loads...

You should publish a thin wrapper package named `create-markdown-md` with a small bin script. Due to the `create-*` convention it would qualify as a proper "initializer package". This would allow...

This is not feature request or bug report, rather a usage question. When using react-force-graph-3d, seems that there is a limit to how far you can zoom in to the...

Simply extends from `PureComponent` instead of `Component`

Several tests fail when executing them on a Windows system. It seems that local file paths do not get translated or processed correctly. This is the summary for me after...

help wanted

The `main/index.js` file is attempting to open the devtools too soon: https://github.com/electron-userland/electron-webpack-quick-start/blob/master/src/main/index.js#L15-L17 This results in an error message printed to the console: `"Extension server error: Object not found: "` A...

As discussed in [here](https://github.com/SimulatedGREG/electron-vue/issues/389), when `openDevTools()` is called too soon, an `"Extension server error: Object not found: "` error is reported. The linked issue discusses a couple of approaches to...

Using ``` "dependencies": { "esdoc": "^1.0.3", "esdoc-ecmascript-proposal-plugin": "^1.0.0", "esdoc-jsx-plugin": "^1.0.0", "esdoc-standard-plugin": "^1.0.0" } ``` When using a class decorator with an object as argument, I run into this error: ```...