dependabot[bot] ae9afd27e0
Bump path-parse from 1.0.6 to 1.0.7
Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7.
- [Release notes](https://github.com/jbgutierrez/path-parse/releases)
- [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7)

---
updated-dependencies:
- dependency-name: path-parse
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-08-31 07:29:35 +00:00
2021-08-31 07:29:35 +00:00

eServer (@dm1sh/eserver)

One more "middleware-oriented" webserver written with only core NodeJS functions using TypeScript. It also supports express middlewares.

Installation

yarn add @dm1sh/eserver
# or
npm install @dm1sh/eserver

Usage

import eServer from "@dm1sh/eserver"
import cors from "cors"

const app = new eServer()

app.use(cors())

app.route("/", (req, res) => res.send("Welcome home"))

app.listen(5000)
Description
Simple express-like webserver
Readme 68 KiB
Languages
JavaScript 50.4%
TypeScript 49.6%