We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a02d303 commit 3db44b5Copy full SHA for 3db44b5
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/algorithms/blob/master/CONTRIBUTING.md).
0 commit comments