PXE.js
예시
각 요청에 대해
Hello world
로 응답하는 간단한 웹 서버입니다.import Server from "@pxe/server";
// Initialize a new server
const app = new Server();
// Add a middleware
app.use(async (ctx, next) => {
// Set the response to "Hello world"
ctx.response.body = "Hello world";
// Run the next middleware
// End the response if this is the last middleware
await next();
});
// Listen to port 3000
app.ls(3000);
기본 기능
용법
현재documentation 공사중입니다.
질문이 있으시면 Discord으로 채팅하십시오.
연결
기타 링크: Github , Discord , Benchmarking , Templates
Reference
이 문제에 관하여(PXE.js), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/revenity/pxejs-3om9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)