ok, starting from the bottom:
commit 189eb1929415f0b3511bd22738e2f26c9fdebdaa (HEAD -> master, origin/master, origin/dev-safenodeapp-v8, origin/HEAD)
Merge: a160858 5452fca
Author: theWebalyst <github@happybeing.com>
Date: Mon Oct 1 20:57:47 2018 +0100
back to the top, yes here are the (crude) steps done…apologies for the …hm…formatting:
MacBook-Pro-2:~ Home$ brew install git
brew install node.js
note, installing node.js through homebrew turned out to be a bad move, so scraping last passage, but I’ll leave it there to show the sequence
$ mkdir safe_example
$ cd safe_example/
$ git clone https://github.com/maidsafe/safe_examples safe_examples
And then install its dependencies:
$ cd safe_examples/safe_app_electron_quick_start
$ npm install
electron installed and
$ npm start
shows the app as … expected
next step made me (and a few more…thanks @bzee @hunterlester) realise I might need xcode…so
install xcode from store
open xcode (installs components) from store
plus, node installed with homebrew…bad idea; so:
Node.js — Download Node.js®
much better, node 8.12 installed
$ NODE_ENV=dev npm install @maidsafe/safe-node-app --save
installs ok
(when I say ok, still a few warnings like warning: arithmetic on a null pointer treated as a cast from integer to pointer is a GNU extension [-Wnull-pointer-arithmetic] - me ignoring)
that’s where I stop with the tutorial…
back to safe-network-fuse
sounds like I need yarn
MacBook-Pro-2:safenetworkjs Home$ brew install yarn
and then we’re flying:
git clone https://github.com/theWebalyst/safenetworkjs
cd safenetworkjs
npm install
npm link
git clone https://github.com/theWebalyst/safenetwork-fuse
cd safenetwork-fuse
NODE_ENV=dev npm install
npm link safenetworkjs
now, libfuse 
https://github.com/osxfuse/osxfuse/releases
why not
and then that’s where I jumped to ‘Build for live network’…
(and yes, you’re right, I did that…)