Fix uuid error: "uuid is not a function"#10
Conversation
Change line 16 of AlexaResponse.js:
let uuid = require('uuid');
To:
let uuid = require('uuid/v4');
|
After modifying the code, this problem occurred, can you help me see it? { |
|
Open your package.json and verify the version of uuid package. Change to "7.0.2" and test. |
|
Change line 16 of AlexaResponse.js:
let uuid = require('uuid');
To:
let uuid = require('uuid/v4');