-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bringing node-inspect into the fold #67
Comments
one more step to add at the end is to open an issue in the TSC repo requesting the ok for the move. |
I think the diagnostics WG repo should have a GOVERNANCE.md and CONTRIBUTING.md as all repos should. @joshgav is that something you can look at fixing ? |
Regarding using tap (by which I assume you mean https://www.npmjs.com/package/tap), we already use it for the npm tests, and I think there are possibly plans to use it more for other things, so I'm pretty sure that should be fine. |
@jkrems as a standalone repo there is no problem with using tap... we use it for citgm :D |
For linting, I personally like standardjs, but it might be better to keep consistency with the other node repos (so people coming from other areas within the nodejs org don't have to keep track of multiple linting styles). |
I think the current lint settings match what node core is doing for the most part. I couldn't find a published version of the node core config and copy&paste of the file(s) didn't seem like an improvement over the current situation. :) Updated the implementation, filling some of the last gaps & adding |
I know @geek published https://www.npmjs.com/package/node-style. It looks like it's probably stale, but could be updated if you wanted to use it. |
shouldn't uh, this just land in core itself if it is to replace |
@Fishrock123 The feedback I got when I proposed that was:
|
I think this should be in core. Now that V8_inspector debug protocol has landed in V8 directly, the old debug protocol (that has been deprecated for a long while) is likely to be removed soon-ish. This project would be needed in core at that point or we will have to deprecate/remove |
I'd be happy to unblock anyone who would want to port the current code to node core. The license already is the same (it's a derived work of a node core file) and the code has no external dependencies. The biggest task would be to port the test suite but that should hopefully be relatively straight-forward. :) |
One argument for it landing in node core itself in some shape or form: node 6.9 is the second 6.x release in a row that breaks it (because details of the protocol / expectations changed). |
Hmmm ok, read through the other threads. Could you describe a bit what benefit this may have in the foundation? |
@Fishrock123 To clarify your question: Benefit of having an officially supported CLI debugger or benefit of keeping it in its own repository? I don't really have a good answer for the former (other than "It's the status quo and the people using it might dislike the removal"). If you were asking for "benefits of a separate repo": I think others are better equipped to answer that question. From the transcript it looks like the reason came down to "if there's no good reason to have it in core, don't put it in core":
Having it as a separate repo would not prevent us from bringing it into core in the future. Potentially it would even allow us to have development in a separate repo and roll new releases into core from time to time. That could allow relatively fast development of the CLI debugger under the stewardship of the diagnostics WG with new releases available via npm immediately. The precedent would be I'm going to defer further work until there's agreement on the path forward. :) |
Published |
Just gave it a quick try for verification purposes: Integrating the current code into node itself takes 5 lines.
|
Let me know if you need anything else from my side. :) |
Is there a CTC or TSC champion for this? |
@bnoordhuis @jkrems I've been reviewing and testing this and can help with logistics and some more review and updates. Still would be ideal to have a CTC member involved. Although the CLI Debugger was integrated in core in the past, perhaps we should consider decoupling it at this inflection point, and maintaining it in a separate repo. That would allow it to get more attention I think, and make it less risky to add and innovate in it. For example, I've been thinking of adding some sort of "profile" command which could run a brief CPU profile and dump the output. Also, the CLI debugger could potentially be opened against a web page or other implementor of the Inspector Protocol besides Node. Even if it isn't in the core repo, we could bundle it with the default distribution. |
Talked with a handful of folks at Node Interactive today about this. Apart from the important issue of bringing
|
@Trott Happy to chat in person if you're at node interactive as well! |
@jkrems Yes, please. That would be great. I'm sitting quietly outside the empty conference rooms right now, if after-parties aren't your thing either. Otherwise, tomorrow some time? |
Same! Going to head down to the 4th floor. |
Updated the issue description to be more reflective of where we're at. @joshgav or @Trott: Are we tracking the overall project ("prepare for --debug removal") somewhere? I know some of it is captured in meeting notes and comments like this one but it might be good to have this is as... a dedicated issue? As part of this issue's TODO checkboxes? A Github project? Had to dig through multiple links & documents to remember half of what we discussed. :) |
@jkrems I don't think it's being tracked centrally anywhere. Not sure what the best way to track it would be. I'm inclined to think a checklist in this issue would be workable, but @joshgav may be more plugged in to how to manage these sorts of things effectively, since not-letting-things-slip-through-the-cracks-on-collaborative-projects is part of his actual job (I think). |
I'd open a tracking issue at nodejs/node. It affects core and an issue on the main bug tracker has better visibility (in theory anyway... it can be a black hole sometimes.) |
@jkrems @Trott I did indeed contemplate setting up a GitHub project to gather the various discussions on this topic and can look into it again. In fact though, Jan's summary at the top of this thread is a great start already, perhaps we can use it as the main tracking point; we all should have edit access to it. |
The reason I punted on moving to an issue in |
@joshgav Follow-up to the "do we have the old debugger in node 8" question: What would this mean for the kill signal? Would we still change it to start |
It would be good to have a single tracking issue for debug/inspect work. nodejs/node#7266 seems to be pretty stale IMO, so it would be fine to close it and reference it in a new tracking issue on From my point of view, from what I have been able to determine from various issues, the next steps are something like the following:
|
Closing in favor of nodejs/node#11421 in @ofrobots I tried to incorporate the points you brought up in the updated checklist. Feel free to edit/amend/editorialize. :) |
Too @ofrobots third point (jic anyone's interested) here's the scaffolded prototype implementation of the JS wrapper to the inspector API for in-process communication: |
We should probably have a tracking issue for finishing up Inspector work generally, perhaps we can use the thread @jkrems started? |
@joshgav Happy to turn nodejs/node#11421 into a generic "inspector stuff" tracking issue. In practice it's hard to decouple the two concerns anyhow. |
EDIT: Please refer to nodejs/node#11421 for the latest status.
This issue tracks outstanding questions & tasks that have to be resolved to bring
node-inspect
into the nodejs org.node debug
node-inspect
and more details about--inspect
to debugger docs: guides: debugging getting started guide nodejs.org#1131node --debug
: lib: deprecate node --debug at runtime node#10970Context & History
node-inspect
repositorynodejs/CTC
issueThe text was updated successfully, but these errors were encountered: