[@LegendBegins] Fortunately those aren't big issues. You can ignore WARNs. That example is just whining that the guild doesn't have a license defined. :rolleyes The "env" error is simply because Windows doesn't have that command. Open up package.json and change line 7: [pre]"start-dev": "env $(cat .env | xargs) nodemon --harmony --expose-gc ./server | bunyan"[/pre] to this: [pre]"start-dev": "nodemon --harmony ./server"[/pre] Now the command [code]npm run-script start-dev[/code] might successfully get you to the next error. :lol