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);


기본 기능


  • 웹 쿠키
  • 리디렉션
  • 오류 처리
  • 미들웨어
  • Typescript 지원

  • 용법



    현재documentation 공사중입니다.
    질문이 있으시면 Discord으로 채팅하십시오.

    연결



    기타 링크: Github , Discord , Benchmarking , Templates

    좋은 웹페이지 즐겨찾기