pretty-error icon indicating copy to clipboard operation
pretty-error copied to clipboard

See node.js errors with less clutter

Results 24 pretty-error issues
Sort by recently updated
recently updated
newest added

originally from: https://github.com/MatthewMueller/better-error/issues/1

Not sure if paths changed since previous Node versions, or if this method was only intended to include specific files but it doesn't seem to be working the way I...

Is there a way to remove `\n` between stack trace lines as well as `\t` before stack trace line?

This PR removes several files from the NPM package that are not needed at runtime.

``` C:\Users\i0x\Desktop\std\ace.js\node_modules\renderkid\lib\renderKid\styles\rule\DeclarationBlock.js:40 this._getDeclarationClass(prop).setOnto(this._declarations, prop, value); ^ [TypeError: this._getDeclarationClass(...).setOnto is not a function] ``` ``` C:\Users\i0x\Desktop\std\ace.js>node --version v17.7.2 C:\Users\i0x\Desktop\std\ace.js>yarn --version 1.22.15 ``` ``` "pretty-error": "^4.0.0", "renderkid": "^3.0.0" ```

This PR does 2 things: - Updates lodash to solve https://npmjs.com/advisories/1673 - Updates renderkid to solve a nested CVE with css-what There is another CVE with a dependency used by...

Hi! I need to address some vulnerabilities including one for `css-what` https://www.npmjs.com/advisories/1754 which is a dependency for `renderkid` and fixed in `renderkid 2.0.7` Would it be possible to update `renderkid`...

I'm building an application which really needs nested errors. The fs can throw, but in my application just seeing what failed isn't enough to understand what action was being attempted...

Removing everything before the colon on the stack trace breaks some messages of the libraries I use; I'd like it to be optional. Hope this doesn't break anything.

I had an issue where I needed to obtain an un-modified stack trace for another package to parse information out of. In the end I solved it as: ``` pe.stop();...

good first issue