brain-web
v0.0.0-1
Published
## Bring the brain-web community to your website!
Downloads
9
Readme
brain-web.js
Bring the brain-web community to your website!
BrainWeb is a permanent virtual space for online collaborations on projects related to neuroscience. Inspired by initiatives such as Brainhack Global, the OHBM Hackathon, and the OHBM Equinox Brain Twitter Conference, BrainWeb aims at providing an online workspace to facilitate distributed collaboration on a continuous basis.
Basic Usage
<script src="../brain-web.js"></script>
<script>
window.onload = function () {
BrainWeb.on('data', function ({ people, skills }) {
BrainWeb.vis.buildNetwork(people, {
width: document.body.clientWidth,
height: document.body.clientHeight,
zoom: 2,
})
.then((svg) => {
document.body.appendChild(svg);
})
.catch(console.log);
});
BrainWeb.init();
};
</script>