且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

NPM:找不到模块“uuid"

更新时间:2022-12-10 09:54:13

你可能已经看到了因为这个错误

You might have seen the error because of this

const uuidv1 = require('uuid/v1');

尝试用这个替换它

const { v1: uuidv1 } = require('uuid');