PokemonGo-Enhanced / Enhanced-Backend

PokemonGo just got better
43 stars 15 forks source link

Solved #14

Closed Cr4nkSt4r closed 4 years ago

Cr4nkSt4r commented 8 years ago

Solved

panki27 commented 8 years ago

Try deleting your node_modules folder, then running npm install again.

panki27 commented 8 years ago

Error: Cannot find module 'moment'

You are missing a few modules, I had the same problem. You'll need to manually install them:

npm install --save $modulename

For me the ones missing were:

rubenvereecken commented 8 years ago

Just to add to this conversation:

SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode

I used to have this when I forgot to switch to my Node v6.3. Make sure to check with node --version! Otherwise, glad you got it working. And thanks for the help lads.