You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got an early start on the challenge and found this error . Once you install restler and try to use it in the code via the line var rest = require('./restler'); by following the example code, your computer will throw an error saying it can't find the module './restler'. To solve this, you want to instead use the line var rest = require('restler');. If anyone wants to know where I found this solution, here's the link: bnoguchi/everyauth#359
Hope this prevented some headaches early on.
The text was updated successfully, but these errors were encountered:
Hi all,
I got an early start on the challenge and found this error . Once you install restler and try to use it in the code via the line var rest = require('./restler'); by following the example code, your computer will throw an error saying it can't find the module './restler'. To solve this, you want to instead use the line var rest = require('restler');. If anyone wants to know where I found this solution, here's the link: bnoguchi/everyauth#359
Hope this prevented some headaches early on.
The text was updated successfully, but these errors were encountered: