We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5dc6839 + 45afcd9 commit 696de94Copy full SHA for 696de94
1 file changed
README.md
@@ -0,0 +1,27 @@
1
+# tracers.js
2
+
3
+> `tracers.js` is a visualization library for JavaScript.
4
5
+This repository is part of the project [Algorithm Visualizer](https://github.com/algorithm-visualizer).
6
7
+## Installation
8
9
+```bash
10
+npm install algorithm-visualizer
11
+```
12
13
+## Usage
14
15
+```js
16
+import { LogTracer } from 'algorithm-visualizer';
17
18
+const logTracer = new LogTracer('Scratch Paper');
19
20
+logTracer.print('Visualize your own algorithm here!');
21
22
23
+Check out the [API reference](https://github.com/algorithm-visualizer/algorithm-visualizer/wiki) for more information.
24
25
+## Contributing
26
27
+Check out the [contributing guidelines](https://github.com/algorithm-visualizer/tracers.js/blob/master/CONTRIBUTING.md).
0 commit comments