
This is PXE.js, A NodeJS framework for creating web apps and APIs.
Example
A hello world application:
import Server from "@pxe/server";
const app = new Server();
app.use(async ctx => {
ctx.response.body = "Hello World!";
});
app.ls(3000);
This is PXE.js, A NodeJS framework for creating web apps and APIs.
A hello world application:
import Server from "@pxe/server";
const app = new Server();
app.use(async ctx => {
ctx.response.body = "Hello World!";
});
app.ls(3000);