TypeScriptYayu Wang included in category Programming_language 2023-06-08 2024-08-31 50 words One minute Contents Initialize projectUUIDrequestInitialize project1 npx create-next-app@latestUUID1 2 3 4 5 npm install @types/uuid uuid; import {v4 as UUID} from 'uuid'; let uuid = UUID();request1 2 3 4 5 6 7 const response = await fetch("http://localhost:8080", { method: "POST", body: jsonRPCBody, Headers: { "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8", }, });