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
In the "Add an API to Create a Note" section we are told to run the following command in the packages/functions/ folder:
npm install aws-sdk uuid
Later in the chapter, the import statement for aws-sdk is refactored into packages/core/src/dynamodb.js. This will cause an error of course, because aws-sdk wasn't installed in this directory.
We can install it in packages/core too, or maybe it's better to install it in the root directory (not sure?).
The text was updated successfully, but these errors were encountered:
In the "Add an API to Create a Note" section we are told to run the following command in the
packages/functions/
folder:Later in the chapter, the import statement for aws-sdk is refactored into
packages/core/src/dynamodb.js
. This will cause an error of course, because aws-sdk wasn't installed in this directory.We can install it in
packages/core
too, or maybe it's better to install it in the root directory (not sure?).The text was updated successfully, but these errors were encountered: