-
Notifications
You must be signed in to change notification settings - Fork 9
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
Global 'crypto' object could conflict with Node REPL #3
Comments
cc: @ljharb |
I imagine there's a number of ways to address this in Node. For example: Given that its the REPL and almost guaranteed to have a developer actively interacting with the REPL, Node could chose to make their built-in I'm sure someone from Node could weigh in on this with their thoughts and concerns. |
For one, since this is just in the repl, it won't break any code, it just might confuse some users. However, |
Maybe put it on |
be aware that the default node repl exposes builtin modules as globals and
crypto
is the name of one of them.Originally posted by @bmeck in #2 (comment)
The text was updated successfully, but these errors were encountered: