-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invalid regular expression #63
Comments
Thanks for opening the ticket. |
It's another issue with path.join and urls. On windows machines, it doesn't work. There are multiple places in the code where this is an issue when running on windows. |
Windows 8.1, Node 0.10.30 var app = dbox.app({ "app_key": "key", "app_secret": "secret" }); and see next Process finished with exit code 8 When I run this code on linux machine all works good. |
Hello guys, No body managed to fix this issue? any updates? ;) The fix I did for myself is replacing the "" with "/"... as below in helper.js line 22 to 24 22 var sPath = path.join("/", scope) Cheers |
replace this in helper.js |
Hi,
The exception occures when I invoke a function from Client
The screenshot:
http://screencast.com/t/YIRjMVi20jiS
The text:
C:!Hg\timetracker\node_modules\dbox\lib\helpers.js:25
var rx = RegExp("^" + scopePath, "i")
^
SyntaxError: Invalid regular expression: /^/: \ at end of pattern
at new RegExp (unknown source)
at RegExp (unknown source)
at Object.module.exports.parseJSON (C:!Hg\timetracker\node_modules\dbox\lib\helpers.js:25:16)
at Request.exports.app.client.account as _callback
at Request.init.self.callback (C:!Hg\timetracker\node_modules\dbox\node_modules\request\main.js:119:22)
at Request. (C:!Hg\timetracker\node_modules\dbox\node_modules\request\main.js:525:16)
at Request.EventEmitter.emit (events.js:96:17)
at IncomingMessage.Request.start.self.req.self.httpModule.request.buffer (C:!Hg\timetracker\node_modules\dbox\node_modules\request\main.js:484:14
)
at IncomingMessage.EventEmitter.emit (events.js:126:20)
at IncomingMessage._emitEnd (http.js:366:10)
DEBUG: Program node app.js exited with code 1
The text was updated successfully, but these errors were encountered: