visualizer for the opencog atomspace.
This module is a design of a visualizer for the [opencog atomspace] (https://github.com/opencog/atomspace).
npm install ng2-atomspace-visualizer --save#### app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
private atoms:any = null;
constructor() {
this.atoms = / atoms to visualize in json format /
}
}
#### app.component.html
------------
---------------