Ask HN: What developer tools would you like to see?
21–30 of 230 posts
Re: Ask HN: What developer tools would you like to see?
#22Today, entr allows you to restart a command when a file changes.
A web server allows you to serve local files to your browser.
If you use npm, lots of libs allow you to serve your web ui, and make the browser reload the page when something has changed.
But this is tied to npm, and even to the framework you use (eg: angular has its own way).
It would be cool if we could have a way to do that for any tool/language. Like, could a tool tell the browser to reload, because that tool was restarted by entr due to a file change?
This would allow live preview on any kind of files, or maybe even program output in the browser without having to press F5 every time.
Re: Ask HN: What developer tools would you like to see?
#23Re: Ask HN: What developer tools would you like to see?
#24I just want Xcode, but less buggy. A lot less buggy. Sheesh.
Re: Ask HN: What developer tools would you like to see?
#25Log viewer that can prettify JSON structured objects. And for example if you clicked on level = error it can quickly filter all error logs.
Re: Ask HN: What developer tools would you like to see?
#26Remember the early web, when people used to look at existing websites to learn how it was done? “View Source” used to be a career-starter for a lot of people, but has become largely useless today due to transpilation, frameworks, and other abstraction layers. I’d love to see a browser extension provide an “Explain Source” context menu item, which sends you to a pane in Developer Tools that shows: - an estimation whic…
Re: Ask HN: What developer tools would you like to see?
#271. A tool for debugging TypeScript (in VSCode) that shows the provided and expected types, and how they are different, in a way that is easy to read.
Instead of having a bunch of nested paragraphs in plain text, show it in two columns, each displaying how a normal person would write a type declaration. Maybe even use color (highlighting?) to show which parts are different.
2. A tool for VSCode that lets you expand (into a modal or whatever) types that are abbreviated when you hover them
Re: Ask HN: What developer tools would you like to see?
#28Remember the early web, when people used to look at existing websites to learn how it was done? “View Source” used to be a career-starter for a lot of people, but has become largely useless today due to transpilation, frameworks, and other abstraction layers. I’d love to see a browser extension provide an “Explain Source” context menu item, which sends you to a pane in Developer Tools that shows: - an estimation whic…
Re: Ask HN: What developer tools would you like to see?
#29Re: Ask HN: What developer tools would you like to see?
#30I don't know if this exists or not, but it's something I've always wanted. I love and hate unit testing. It's a fantastic idea that I've never seen successfully implemented in practice, mostly because the tests invariably fall by the wayside. At the very least, it's a burden to support them. I'd love a tool that would observe my code during runtime - capturing all inputs and outputs from every function, as well as th…