Remy Sharp
Remy Sharp
If I have time I'll fire up a local php server and run some tests too. The way `.http` works is that _it_ closes the connection once it has all...
The curl and versions look fine - older firmware, somehow, actually behaved better (we found that 1.6.0.0 introduced a pretty serious bug which I had to code around in the...
Ah, it looks like I broke my own debugging tool! The bank dump was empty - it should have had useful info in it 🤦. I'll get my debugging tool...
What you're doing is all correct - looks like I broke my own test build! I'll fix that up and send it back to you for insights. What I believe...
Just to let you know I'm still on this - I need to fix up my debug build so it can get us the right information.
I'm dropping directly into the repl - can you provide the script you're testing with? Otherwise, when I run `NODE_NO_READLINE=1 node` (again, going directly into repl), and cursor up gives...
Just checking, but does require work? And can you import using `import * as nodemon from 'nodemon'?
I need to have a play. I only added types as an attempt to help people who were requiring the module, but I don't personally use TypeScript ([some context](https://remysharp.com/2024/02/23/why-my-code-isnt-in-typescript)). If...
Okay, to clarify, `import nodemon from 'nodemon'` does work, i.e. this code works: ```js // test.mjs import nodemon from 'nodemon' nodemon({}).on('start', () => { console.log('started'); }); ``` But the types...
Yeah, if you could do a PR I'd appreciate it. I don't want to convert the project to typescript, but I do want to expose the types to help devs...