0.2.0-dev.7 • Published 10 months ago

httpxt v0.2.0-dev.7

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

httpxt

A fast web framework.

Usage

// CommonJS
const httpxt = require("httpxt");
// ESM
import httpxt from "httpxt"

const app = httpxt();

app.get("/", async (req, res) => {
  res.end("Hello world!")
});

app.listen(3000, async () => {
  console.log("Server is up!")
});

Installation

To install httpxt, run one of the following commands:

# npm
npm i httpxt

# yarn
yarn add httpxt

# pnpm
pnpm add httpxt
0.2.0-dev.7

10 months ago

0.2.0-dev.6

10 months ago

0.2.0-dev.5

10 months ago

0.2.0-dev.4

10 months ago

0.2.0-dev.3

10 months ago

0.2.0-dev.2

10 months ago

0.2.0-dev.1

10 months ago

0.2.0-dev

10 months ago

0.1.0

10 months ago