Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 412 Bytes

File metadata and controls

24 lines (15 loc) · 412 Bytes

Walker Server

Walker server is a node HTTP server with a rust backend.

The key focus of this project is to provide a simple, easy to use, and fast HTTP server.

Installation

npm install @walkerserver/server

Usage

const Walker = require('@walkerserver/server');

Walker.get("/", (req) => {
    req.sendText("Hello World!");
});

Walker.start("0.0.0.0:8081", 12);