AWS Lambda - Error: Cannot find module 'uuid/v4'
You need to install uuid
package. uuid
recently did a breaking change, the way you use it. New way is
const {"v4": uuidv4} = require('uuid');
Hope this helps.
You need to install uuid
package. uuid
recently did a breaking change, the way you use it. New way is
const {"v4": uuidv4} = require('uuid');
Hope this helps.