0.2.0-dev.7 • Published 3 years ago

httpxt v0.2.0-dev.7

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years 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

3 years ago

0.2.0-dev.6

3 years ago

0.2.0-dev.5

3 years ago

0.2.0-dev.4

3 years ago

0.2.0-dev.3

3 years ago

0.2.0-dev.2

3 years ago

0.2.0-dev.1

3 years ago

0.2.0-dev

3 years ago

0.1.0

3 years ago