2015-10-27 19:29:59 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# As there is no Linux support, this script assumes OS X as the host system.
|
|
|
|
|
2015-12-06 20:32:19 +01:00
|
|
|
command -v node > /dev/null || (echo 'Node not found, please download it!' && open 'https://nodejs.org/en/' && sleep 5 && exit)
|
2015-10-27 19:29:59 +01:00
|
|
|
|
2016-02-12 18:04:26 +01:00
|
|
|
node index.js
|
|
|
|
exit
|