Daniel Tian
Daniel Tian
Just wanted to add that I ran into the exact same problem where 2 image files were created instead of just 1. Also, it seems like the `.out()` function is...
Remove the extra line between the last element of the template and the `` to fix the issue. This might be a bug with `language-pug`, not 100% sure.
Figured it out: ``` javascript var context = require.context('./tags'); context.keys().forEach(key => { context(key); }); ``` `require.context` returns an object where each key's value is a `require()` function.
These vulnerabilities are in the dependencies, not in Nuts itself. Updating to the most recent versions of the dependencies should fix most, if not all of these. However, even without...
Take a closer look at the vulnerabilities: **Prototype Override Protection Bypass** - in `body-parser` and `request`. If given malicious input, it can override object prototypes. But in Nuts, you'd only...
This is how Windows' file dialog works. The `name` is what's shown in the `Save as type` dropdown. The `extensions` is what it filters the files by. What's returned is...