-
Notifications
You must be signed in to change notification settings - Fork 540
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
Copy path of a selected node #165
Comments
It is a good idea . and very useful |
Yes! This is exactly what I'm looking for. My use case is to paste a deeply nested object in JSON Hero, navigate to the value I want through the UI, and would love to copy with a single click the JavaScript I need to use to get that value programatically. |
I posted this issue 3 months ago, but the author hasn't even replied to me, let alone started developing this feature. |
These guys also have a full time job, the code's open source and if you really need a feature you can write it yourself and make a PR. Here I threw one togethere for you. I've added a 'Copy Path' button that lets you copy in JS or Python at the moment. Use my fork until they add this feature if you're desperate. |
Hope there is a feature to copy the path of the selected in the format of a target language.
for example:
In Python, the copied value should be: root['a']['b']['c']
In JavaScript, the copied value should be: root.a.b.c
The text was updated successfully, but these errors were encountered: