delayed-web-next
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

Delayed

Delayed is a lightweight, dependency-free web framework for Node.js, designed to create simple and effective web applications. With Delayed, you can set up a web server quickly without having to manage bulky dependencies or extensive configurations.

Features

  • 🚀 Fast and lightweight
  • 📦 Zero dependencies
  • 🛠️ Easy to set up and use
  • 💼 Suitable for small to medium projects
  • 🔒 Secure and reliable
  • 🪄 Built with TypeScript

Installation

You can install Delayed using npm:

npm install delayed-web

Or using Yarn:

yarn add delayed-web

Or using pnpm:

pnpm add delayed-web

Quick start

Here's a simple example to get you started:

const delayed = require("delayed-web");

const app = delayed();

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

app.listen(3000, () => {
  console.log("Server running on http://localhost:3000");
});

Package Sidebar

Install

npm i delayed-web-next

Weekly Downloads

2

Version

1.0.5

License

MIT

Unpacked Size

6.02 kB

Total Files

7

Last publish

Collaborators

  • zelzazor