{"id":15970332,"url":"https://github.com/lucaswerkmeister/linkstacktrace","last_synced_at":"2026-04-18T01:02:00.531Z","repository":{"id":12184658,"uuid":"14786373","full_name":"lucaswerkmeister/linkStackTrace","owner":"lucaswerkmeister","description":"A tool to link file:line info from java stack traces to the code pages on Github.","archived":false,"fork":false,"pushed_at":"2017-07-15T21:25:16.000Z","size":54,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"gh-pages","last_synced_at":"2025-03-20T18:36:10.528Z","etag":null,"topics":["bug-reporting","stacktrace"],"latest_commit_sha":null,"homepage":"http://lucaswerkmeister.github.io/linkStackTrace/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lucaswerkmeister.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-11-28T21:00:58.000Z","updated_at":"2022-09-26T10:08:56.000Z","dependencies_parsed_at":"2022-09-15T06:11:38.728Z","dependency_job_id":null,"html_url":"https://github.com/lucaswerkmeister/linkStackTrace","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lucaswerkmeister/linkStackTrace","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucaswerkmeister%2FlinkStackTrace","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucaswerkmeister%2FlinkStackTrace/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucaswerkmeister%2FlinkStackTrace/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucaswerkmeister%2FlinkStackTrace/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lucaswerkmeister","download_url":"https://codeload.github.com/lucaswerkmeister/linkStackTrace/tar.gz/refs/heads/gh-pages","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucaswerkmeister%2FlinkStackTrace/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31952208,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"ssl_error","status_checked_at":"2026-04-18T00:39:20.671Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bug-reporting","stacktrace"],"created_at":"2024-10-07T20:01:18.955Z","updated_at":"2026-04-18T01:02:00.450Z","avatar_url":"https://github.com/lucaswerkmeister.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"linkStackTrace\n==============\n\nlinkStackTrace will go through a Java stack trace, search for files in a Github repository and add Markdown links to the stack trace.\n\nGiven the following stack trace\n```\njava.lang.RuntimeException: \n    at com.redhat.ceylon.compiler.java.codegen.Assert.fail(Assert.java:37)\n    at com.redhat.ceylon.compiler.java.codegen.Assert.fail(Assert.java:43)\n    at com.redhat.ceylon.compiler.java.codegen.AnnotationInvocationVisitor.\u003cinit\u003e(AnnotationInvocationVisitor.java:73)\n    at com.redhat.ceylon.compiler.java.codegen.ExpressionTransformer.transformAnnotation(ExpressionTransformer.java:4354)\n    at com.redhat.ceylon.compiler.java.codegen.ExpressionTransformer.transform(ExpressionTransformer.java:4319)\n    at com.redhat.ceylon.compiler.java.codegen.CeylonTransformer.transformPackageDescriptor(CeylonTransformer.java:455)\n```\nand the repository `ceylon/ceylon-compiler`, it will\n\n* extract the file+line infos (`Assert.java:37`, `Assert.java:43`, `AnnotationInvocationVisitor.java:73`, etc.)\n* search for the files (`Assert.java`, `AnnotationInvocationVisitor.java`, etc.) on GitHub in the repository `ceylon/ceylon-compiler`\n* and, if a unique match is found, replace the file:line in the stack trace with a Markdown link to the correct line of the found file\n\nresulting in this Markdown:\n```\njava.lang.RuntimeException: \n    at com.redhat.ceylon.compiler.java.codegen.Assert.fail(Assert.java:37)\n    at com.redhat.ceylon.compiler.java.codegen.Assert.fail(Assert.java:43)\n    at com.redhat.ceylon.compiler.java.codegen.AnnotationInvocationVisitor.\u003cinit\u003e([AnnotationInvocationVisitor.java:73](https://github.com/ceylon/ceylon-compiler/blob/5323225dbbe3d87b221e0b64cec0e68d8b09adab/src/com/redhat/ceylon/compiler/java/codegen/AnnotationInvocationVisitor.java#L73))\n    at com.redhat.ceylon.compiler.java.codegen.ExpressionTransformer.transformAnnotation([ExpressionTransformer.java:4354](https://github.com/ceylon/ceylon-compiler/blob/a57480723c29636dec6ae2d7606b1afc05d6be8b/src/com/redhat/ceylon/compiler/java/codegen/ExpressionTransformer.java#L4354))\n    at com.redhat.ceylon.compiler.java.codegen.ExpressionTransformer.transform([ExpressionTransformer.java:4319](https://github.com/ceylon/ceylon-compiler/blob/a57480723c29636dec6ae2d7606b1afc05d6be8b/src/com/redhat/ceylon/compiler/java/codegen/ExpressionTransformer.java#L4319))\n    at com.redhat.ceylon.compiler.java.codegen.CeylonTransformer.transformPackageDescriptor([CeylonTransformer.java:455](https://github.com/ceylon/ceylon-compiler/blob/9b2ed03f6ec738925b7c2d00e8fbd2b55bf89e51/src/com/redhat/ceylon/compiler/java/codegen/CeylonTransformer.java#L455))\n\u003csup\u003eGenerated by [linkStackTrace](http://lucaswerkmeister.github.io/linkStackTrace/)\u003c/sup\u003e\n```\nwhich, rendered, looks like this¹:\n\u003e java.lang.RuntimeException: \n    at com.redhat.ceylon.compiler.java.codegen.Assert.fail(Assert.java:37)\n    at com.redhat.ceylon.compiler.java.codegen.Assert.fail(Assert.java:43)\n    at com.redhat.ceylon.compiler.java.codegen.AnnotationInvocationVisitor.\u003cinit\u003e([AnnotationInvocationVisitor.java:73](https://github.com/ceylon/ceylon-compiler/blob/5323225dbbe3d87b221e0b64cec0e68d8b09adab/src/com/redhat/ceylon/compiler/java/codegen/AnnotationInvocationVisitor.java#L73))\n    at com.redhat.ceylon.compiler.java.codegen.ExpressionTransformer.transformAnnotation([ExpressionTransformer.java:4354](https://github.com/ceylon/ceylon-compiler/blob/a57480723c29636dec6ae2d7606b1afc05d6be8b/src/com/redhat/ceylon/compiler/java/codegen/ExpressionTransformer.java#L4354))\n    at com.redhat.ceylon.compiler.java.codegen.ExpressionTransformer.transform([ExpressionTransformer.java:4319](https://github.com/ceylon/ceylon-compiler/blob/a57480723c29636dec6ae2d7606b1afc05d6be8b/src/com/redhat/ceylon/compiler/java/codegen/ExpressionTransformer.java#L4319))\n    at com.redhat.ceylon.compiler.java.codegen.CeylonTransformer.transformPackageDescriptor([CeylonTransformer.java:455](https://github.com/ceylon/ceylon-compiler/blob/9b2ed03f6ec738925b7c2d00e8fbd2b55bf89e51/src/com/redhat/ceylon/compiler/java/codegen/CeylonTransformer.java#L455))\n\u003csup\u003eGenerated by [linkStackTrace](http://lucaswerkmeister.github.io/linkStackTrace/)\u003c/sup\u003e\n\n¹: If you use the linked stack trace in GitHub issues, GitHub Flavored Markdown is used, which keeps line breaks.\n\nSearch results are cached to minimize the amount of GitHub searches that are necessary;\nif it still hits GitHub’s rate limit, you get a message when the rate limit will reset, and can also enter your own API token if you want to.\n\nLegalese\n--------\nThe content of this repository is released under the GNU AGPLv3 as provided in the LICENSE file that accompanied this code.\n\nBy submitting a \"pull request\" or otherwise contributing to this repository, you agree to license your contribution under the license mentioned above.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucaswerkmeister%2Flinkstacktrace","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flucaswerkmeister%2Flinkstacktrace","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucaswerkmeister%2Flinkstacktrace/lists"}