-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
492 lines (449 loc) · 24 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="imgs/favicon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<title>FlowStorm, a Clojure and ClojureScript debugger with some unique features</title>
<script>
var valuePropsExpanded=null;
function expandValueProp(propId) {
if (propId==valuePropsExpanded) {
document.getElementById(propId).classList.add("collapse");
valuePropsExpanded=null;
} else {
let childs = document.querySelector("#value-props-details").children;
for(var i=0; i<childs.length; i++) {
let childId=childs[i].id;
if(propId==childId){
childs[i].classList.remove("collapse");
valuePropsExpanded=propId;
} else {
childs[i].classList.add("collapse");
}
}
}
}
</script>
</head>
<body>
<div id="main">
<nav role="navigation" class="navbar navbar-expand-sm">
<div class="container-fluid center-line">
<div class="navbar-header nav">
<a class="navbar-brand" href="/"><span>FlowStorm</span></a>
</div>
<button class="navbar-toggler custom-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#nav-bar" aria-controls="#nav-bar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div id="nav-bar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="nav-button"><a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_clojurestorm">Get Started</a></li>
<li class="nav-button"><a href="https://github.com/flow-storm/flow-storm-debugger#features">Features</a></li>
<li class="nav-button"><a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html">User Guide</a></li>
<li class="nav-button"><a href="https://github.com/flow-storm/flow-storm-debugger#some-demo-videos-newers-at-the-top">Videos</a></li>
<li class="nav-button"><a href="https://github.com/flow-storm/flow-storm-debugger#faq">FAQ</a></li>
</ul>
</div>
</div>
</nav>
<div id="main-content">
<div id="jumbotron">
<div class="container-fluid">
<div class="row py-sm-5">
<div class="container center-line inner">
<div class="row">
<div class="col-sm-8 order-sm-2">
<img src="./imgs/jumbotron.png" class="img-fluid"/>
</div>
<div class="col-sm-3 order-sm-1 text-center">
<h2 class="header">Much more than a debugger</h2>
<button class="btn btn-primary"><a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_clojurestorm">Get Started</a></button>
</div>
</div>
<div class="row pt-5">
<div class="col-12 text-center text-light">
<p>Designed to take your Clojure interactive programming to the next level.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="value-props" class="accordion container center-line">
<div class="row py-sm-3">
<div class="col-6 col-sm-4 col-md-2 value-props-btn"><div onclick="expandValueProp('val_prop_ide')" class="value text-center">IDE independent</div></div>
<div class="col-6 col-sm-4 col-md-2 value-props-btn"><div onclick="expandValueProp('val_prop_clj_cljs')" class="value text-center">Clojure & ClojureScript</div></div>
<div class="col-6 col-sm-4 col-md-2 value-props-btn"><div onclick="expandValueProp('val_prop_oss')" class="value text-center">Free & Open Source</div></div>
<div class="col-6 col-sm-4 col-md-2 value-props-btn"><div onclick="expandValueProp('val_prop_interactive')" class="value text-center">Designed for interactive programming</div></div>
<div class="col-6 col-sm-4 col-md-2 value-props-btn"><div onclick="expandValueProp('val_prop_multi_strategy')" class="value text-center">Multi strategy</div></div>
<div class="col-6 col-sm-4 col-md-2 value-props-btn"><div onclick="expandValueProp('val_prop_more_than_debugger')" class="value text-center">More than a debugger</div></div>
</div>
<div id="value-props-details" class="row">
<div id="val_prop_ide" class="collapse">
<p>
Have all the debugging power no matter what editor/IDE you choose.
</p>
</div>
<div id="val_prop_clj_cljs" class="collapse">
<p>
Whenever it can, FlowStorm tries hard to provide the same features for Clojure and ClojureScript.
</p>
</div>
<div id="val_prop_oss" class="collapse">
<p>
FlowStorm is and will always be free as in speech. So no money involved and use it however you like.
</p>
</div>
<div id="val_prop_interactive" class="collapse">
<p>
Clojure as most Lisps are designed from the ground to support interactive programming, so it is FlowStorm.
</p>
</div>
<div id="val_prop_multi_strategy" class="collapse">
<p>
Every situation requires a different strategy. From stepping, trough printing, to scope capturing and repl poking, FlowStorm
tries to support all debugging strategies.
</p>
</div>
<div id="val_prop_more_than_debugger" class="collapse">
<p>
Most of the provided tools are great for chasing bugs, but FlowStorm is designed not only as a debugger but as a development sidecar
to enhance your interactive programming experience.
</p>
</div>
</div>
</div>
<div id="features">
<div class="container-fluid">
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="feature-desc col-sm-4 order-sm-1">
<h2>Step freely through your code</h2>
<p>
Hit record and debug anything. No need to add breakpoints or modify your code.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_code_stepping">Learn More</a>
</div>
<div class="col-sm-7 order-sm-2">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_code_stepping">
<img class="img-fluid" alt="" src="./imgs/stepping.gif"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="feature-desc col-sm-5 order-sm-2">
<h2>Realtime visualizations</h2>
<p>
Visualize changing data in real time, with custom visualizations.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_realtime_visualizations">Learn More</a>
</div>
<div class="col-sm-7 order-sm-1">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_realtime_visualizations">
<img class="img-fluid" alt="" src="./imgs/realtime.gif"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="feature-desc col-sm-5 order-sm-1">
<h2>Customizable data visualizations</h2>
<p>
FlowStorm data windows allows you to explore and visualize your data in customizable ways.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_data_windows">Learn More</a>
</div>
<div class="col-sm-7 order-sm-2">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_data_windows">
<img class="img-fluid" alt="" src="./imgs/custom_visualizations.png"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="feature-desc col-sm-5 order-sm-2">
<h2>Follow the values</h2>
<p>
Ever wonder how a value got there?
<br>
Use the power stepping tools to track any value as it moves through your program.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_power_stepping">Learn More</a>
</div>
<div class="col-sm-7 order-sm-1">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_power_stepping">
<img class="img-fluid" alt="" src="./imgs/power-stepping.png"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="feature-desc col-sm-5 order-sm-1">
<h2>Jump around</h2>
<p>
FlowStorm is designed to be part of your workflow, so jumping around should be fast. Type your function name, then instantly navigate to step over it.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_the_tool_bar">Learn More</a>
</div>
<div class="col-sm-7 order-sm-2">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_the_tool_bar">
<img class="img-fluid" alt="" src="./imgs/quick-jump.png"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="feature-desc col-sm-5 order-sm-2">
<h2>Programmable debugging</h2>
<p>
Analyze your recordings with the full power of Clojure.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_programmable_debugging">Learn More</a>
</div>
<div class="col-sm-7 order-sm-1">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_programmable_debugging">
<img class="img-fluid" alt="" src="./imgs/programmable.png"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="feature-desc col-sm-5 order-sm-1">
<h2>Explore your call tree</h2>
<p>
Get a high level understanding of your execution by expanding and exploring the call tree.
Need to go deeper? Just click and jump to that point in time.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_call_stack_tree_tool">Learn More</a>
</div>
<div class="col-sm-7 order-sm-2">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_call_stack_tree_tool">
<img class="img-fluid" alt="" src="./imgs/call_tree.png"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="feature-desc col-sm-5 order-sm-2">
<h2>Understand your functions</h2>
<p>
Get a high level view of your functions and how they are being called.
Easily explore their arguments and return values.
Need to go deeper? Just click and step through its code.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_functions_tool">Learn More</a>
</div>
<div class="col-sm-7 order-sm-1">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_functions_tool">
<img class="img-fluid" alt="" src="./imgs/functions.png"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="feature-desc col-sm-5 order-sm-1">
<h2>Inspect your values</h2>
<p>
Clojure is data oriented. FlowStorm provides a powerful data inspection tool.
Navigate freely into your data just by clicking around.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_data_windows">Learn More</a>
</div>
<div class="col-sm-7 order-sm-2">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_data_windows">
<img class="img-fluid" alt="" src="./imgs/data_window.png"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="feature-desc col-sm-5 order-sm-2">
<h2>Take any value back to your REPL</h2>
<p>
FlowStorm is designed for interactive programming. Any value you see in the UI can be
made available to your REPL with a single click.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_define_value_for_repl">Learn More</a>
</div>
<div class="col-sm-7 order-sm-1">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_define_value_for_repl">
<img class="img-fluid" alt="" src="./imgs/def_value.png"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="feature-desc col-sm-5 order-sm-1">
<h2>Multi-threading debugging with the timeline</h2>
<p>
Render your entire executions timeline.
Quickly understand how your threads instructions interleave.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_timeline_tool">Learn More</a>
</div>
<div class="col-sm-7 order-sm-2">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_timeline_tool">
<img class="img-fluid" alt="" src="./imgs/timeline.png"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="col-sm-5 order-sm-2 feature-desc">
<h2>Next level println debugging</h2>
<p>
For those cases where println is still the right choice, add, manage and visualize print instructions
without re running your code.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_printer_tool">Learn More</a>
</div>
<div class="col-sm-7 order-sm-1">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_printer_tool">
<img class="img-fluid" alt="" src="./imgs/printer.png"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="feature-desc col-sm-5 order-sm-1">
<h2>Understand your systems exceptions</h2>
<p>
Explore and jump to any exceptions throwed during the execution of your programs with a single click.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_exceptions_debugging">Learn More</a>
</div>
<div class="col-sm-7 order-sm-2">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_exceptions_debugging">
<img class="img-fluid" alt="" src="./imgs/exceptions.png"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature">
<div class="row">
<div class="col-sm-5 order-sm-2 feature-desc">
<h2>Search any value</h2>
<p>
Search values by predicates or strings, and jump to their usages with a single click.
</p>
<a class="learn-more" href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_searching">Learn More</a>
</div>
<div class="col-sm-7 order-sm-1">
<a href="https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_searching">
<img class="img-fluid" alt="" src="./imgs/search.png"/>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature all-features">
<div class="row">
<div class="col-sm-12 feature-desc text-center">
<h2>And much more! </h2>
<a class="learn-more" href="https://github.com/flow-storm/flow-storm-debugger#features">Check out all the features offered by FlowStorm</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="container center-line feature all-features integrations">
<div class="row">
<div class="col-sm-12 feature-desc text-center">
<h2>Editor Support</h2>
<p>FlowStorm is and will always be editor/IDE independent, but it can also be integrated into your editor of choice.</p>
<p>Here are the currently supported integrations:</p>
<div class="container">
<div class="row py-4">
<div class="col-12 logo">
<a href="https://github.com/flow-storm/cider-storm"><img alt="" src="./imgs/emacs.svg"/></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> <!-- container -->
</div> <!-- features -->
</div> <!-- main-content -->
</div> <!-- main -->
<div id="footer">
<div class="container-fluid">
<div class="row py-sm-5">
<div class="container center-line inner">
<div class="row">
<!-- <div class="col-sm-7"> -->
<!-- <ul> -->
<!-- <li> -->
<!-- <iframe -->
<!-- src="https://ghbtns.com/github-btn.html?user=jpmonettas&repo=flow-storm-debugger&type=star&count=true&" -->
<!-- width=160 -->
<!-- height=30 -->
<!-- title="GitHub Stars" -->
<!-- /> -->
<!-- </li> -->
<!-- </ul> -->
<!-- </div> -->
<div class="col-sm-12">
<ul class="text-center">
<li class="links"><a href="https://github.com/flow-storm/flow-storm-debugger">Github</a></li>
<li class="links"><a href="https://clojurians.slack.com/archives/C03KZ3XT0CF">Support</a></li>
<li class="links"><a href="https://github.com/sponsors/jpmonettas">Donate</a></li>
<li class="links"><a href="https://raw.githubusercontent.com/flow-storm/flow-storm-debugger/master/UNLICENSE">License</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</body>
</html>