anvaka / ngraph

Beautiful Graphs
MIT License
1.41k stars 131 forks source link

npm install failed on a pixi.js example #23

Open m-ahmadi opened 7 years ago

m-ahmadi commented 7 years ago

Here's the thing:

Downloaded/cloned ngraph master branch. copied "ngraph-master/examples/pixi.js/03 - Zoom And Pan" folder into another folder. renamed it zoompan. ran: npm install

This is what happened: untitled

Here's node and npm versions: 1

denkiwakame commented 7 years ago

@m-ahmadi It seems, in package.json, the version of browserify is too old. remove the browserify from devDepenedencies, and try: $ npm install --save-dev browserify $ npm install It worked for me.

n1njash03s commented 6 years ago

@denkiwakame I had the same issue and this worked for me as well. Thanks for posting!