Karolis Narkevicius

Results 45 comments of Karolis Narkevicius

OK, if I remove the db connection, it prints help, I'll shuffle my code around.

No it doesn't actually. If I just run `bin/import` without any other arguments, the program just exists. Didn't see any docs on how to either print help or execute some...

No. I will post a reproducible example shortly. On Sat, 29 Jun 2019 at 12:21, Marvin Mieth wrote: > Hey @KidkArolis you can show the Help on > your main...

Here's what I mean, taking the example from README (slightly modified): ```js #!/usr/bin/env node const args = require('args') args .option('port', 'The port on which the app will be running', 3000)...

@cainvommars It was an api gateway, can't say for sure but probably around 100,000 requests in 2 hours would fill up the memory and the process would crash. We were...

I've looked a bit more into it, it's only happening when pretty printing is enabled, e.g.: ```js const pino = require('pino') const logger = pino({ prettyPrint: true }) const child...

This is causing me endless frustration with the multitude of tools still using babel 6.. It takes 60s for `require('babel-register')` to kick in in any project calling that.

Might be possible to fix with the new FlatConfig .. https://eslint.org/blog/2022/08/new-config-system-part-2/ Of course, depends on how everything else will migrate to it.

I agree separating the generated config from the manual config is a good idea. 2 separate files is not a bad idea, for example, bower_components could be a nice place...