substrate

A high-speed three.js substrate for visualizing biofidelic data

View the Project on GitHub aplbrain/substrate

2. Running your app

Install webpack

npm install --global webpack

Run webpack

Do this every time you update code (or you can configure webpack to --watch your code for changes):

$ webpack index.js bundle.js

Run the server

Now run an http server from this directory.

$ npm install --global http-server
$ http-server

OR:

python3 -m http.server 8080

Now, navigate to http://localhost:8080 to see your app up and running.

Next:

Try writing your own layer to add to the scene. Writing Your Own Layer