maidsafe-archive / safe_launcher

Node.js App for SAFE Launcher
Other
95 stars 38 forks source link

Missing `uuid` dependencies #308

Closed ethanpailes closed 6 years ago

ethanpailes commented 7 years ago

The launcher is choking for lack of a uuid module for me. In particular it is the app/ffi/api/nfs.js and app/server/utils.js files which are having trouble.

Steps to reproduce: git clone git@github.com:maidsafe/safe_client_libs.git cd safe_client_libs && cargo build && cd .. git clone git@github.com:maidsafe/safe_launcher.git

copy the libraries into safe_launcher/app/ffi

cd safe_laucher && npm run dev

Running npm install --save uuid fixed the issue for me.

I would be happy to open a PR, but it seems so small that you can just fix it whenever.