Henning Dieterichs翻譯:瘋狂的技術宅前端
https://marketplace.visualstu...node
未經容許嚴禁轉載git
用於在調試期間可視化數據結構的 VS Code 擴展。程序員
安裝此擴展後,使用命令 Open a new Debug Visualizer View
打開新的可視化器視圖。在這個視圖中,你能夠輸入一個表達式,該表達式在逐步分析你的代碼時會進行評估和可視化,例如github
{ kind: { graph: true }, nodes: [ { id: "1", label: "1" }, { id: "2", label: "2" } ], edges: [{ from: "1", to: "2", label: "edge" }] }
你能夠經過編寫本身的函數,從自定義數據結構中提取這些調試數據。請參閱 https://github.com/hediet/vsc... 以獲取 createGraphFromPointers
的文檔。面試
可視化工具用於顯示由數據提取器提取的數據。可視化工具是(大部分)React 組件,位於擴展程序的 Web 視圖中。typescript
Graphviz 和 vis.js 可視化器渲染與 Graph
接口匹配的數據。json
interface Graph { kind: { graph: true }; nodes: NodeGraphData[]; edges: EdgeGraphData[]; } interface NodeGraphData { id: string; label: string; color?: string; } interface EdgeGraphData { from: string; to: string; label: string; id?: string; color?: string; weight?: number; }
graphviz 可視化工具使用 SVG 查看器來渲染由 viz.js
建立的 SVG。segmentfault
export interface Plotly { kind: { plotly: true }; data: Partial<Plotly.Data>[]; } // See plotly docs for Plotly.Data.
樹可視化器渲染與 Tree
接口匹配的數據。數組
interface Tree<TData = unknown> { kind: { tree: true }; root: TreeNode<TData>; } interface TreeNode<TExtraData> { id: string | undefined; name: string; value: string | undefined; emphasizedValue: string | undefined; children: TreeNode<TExtraData>[]; data: TExtraData; isMarked: boolean; }
AST 可視化器渲染與 Ast
接口匹配的數據。
interface Ast extends Tree<{ position: number; length: number; }>, Text { kind: { text: true; tree: true; ast: true }; }
除樹視圖外,還顯示文本表示。
文本可視化器渲染與 Text
接口匹配的數據。
interface Text { kind: { text: true }; text: string; mimeType?: string; fileName?: string; }
mimeType
和 fileName
的文件擴展名用於語法突出顯示。
SVG可視化器渲染與 Svg
接口匹配的數據。實際的 SVG 數據必須存儲在 text
中。
interface Svg extends Text { kind: { text: true; svg: true }; }
點圖可視化器渲染與 DotGraph
接口匹配的數據。
interface DotGraph extends Text { kind: { text: true; dotGraph: true }; }
Viz.js
(Graphviz)用於渲染。
數據提取器可將任意值轉換爲可視化數據。他們存在於被調試者中。此擴展會自動注入如下數據提取器。你也能夠註冊自定義數據提取器。
只需對值調用 .toString()
並將結果視爲文本。
ts.Node
Record
和 [ts.Node]
的可視化。若是記錄包含 fn
鍵,則將爲每一個節點顯示它們的值。將數據直接輸入到可視化工具。
在值上調用 .getDebugVisualization()
,並將結果視爲對可視化工具的直接輸入。
使用 plotly 繪製數字數組。
構造一個圖形,其中包含從表達式求值到的對象可到達的全部對象。使用廣度搜索構造圖。在 50 個節點後中止。
shift+enter
添加新行,按 ctrl+enter
計算表達式。當只有一行時,enter
提交當前表達式,可是當有多行時,enter插入另外一個換行符。當前,僅 JavaScript(以及TypeScript)的值能夠可視化,而且僅支持少許可視化。該體系結構足夠強大,未來能夠支持其餘語言。
@hediet/debug-visualizer-data-extraction
一個經過提供基礎結構以實現和註冊自定義數據提取器的庫。有關更多信息,請參見庫的 README。
這個擴展能夠與個人庫 @hediet/node-reload
一塊兒很好地工做。他們在一塊兒提供了一個交互式 typescript 演示器。