Replies: 2 comments
-
Thanks - I'll make the updates when I'm back in ~10 days. |
Beta Was this translation helpful? Give feedback.
0 replies
-
updated requirements to nodejs v14 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
running node demo using Node version 13 or below return error
Error:
SyntaxError: Unexpected token '.'
Error Reason:
error is because of Optional Chaining used which is not supported in NodeJS 13 or below.
you can confirm here Optional Chianing MDN or check this StackOverflow question
Minimum Node version require should be bumped to 14 or above instead of 12 as mentioned in documentation.
Beta Was this translation helpful? Give feedback.
All reactions