npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gamatek.http

v1.0.0

Published

Light HTTP Server

Downloads

11

Readme

Node.js Web Application Framework

This is a simple Node.js web application framework that allows you to create routes and serve static files. It is built using the core Node.js http module and provides a basic routing mechanism.

const App = require("gamatek.http");
const app = new App();
const router = new App.Router();

router.onRequest("GET", "/", (req, res) => {
    res.send("Hello World");
});

app.addRouter(router);
app.listen(3000, () => {
    console.log("App running on port 3000");
});

Installation

To use this framework in your Node.js application, you can install it via npm:

npm install gamatek.http

Features

  • Routing: Define routes using HTTP methods (GET, POST, etc. and with ALL) and path patterns.
  • Static File Serving: Serve static files (e.g., HTML, CSS, JavaScript) from specified directories.
  • Middleware: Easily add custom middleware functions to handle requests.
  • Request and Response Utilities: Helper functions for working with request and response objects.
  • Cookie Handling: Functions for setting and parsing cookies.
  • EJS Templating: Integrate EJS for rendering dynamic HTML templates.
  • Error Handling: Basic error handling for 404 and 500 errors.

Creating Routes

To create routes for your web application, use Router class providing an optional base URL. The base URL can be used to group related routes under a common path prefix. Here's an example:

const App = require("gamatek.http");

const router = new App.Router("/api");

router.onRequest("GET", "/hello", (req, res) => {
    res.send("Hello, World!");
});

module.exports = router;

Or:

const App = require("gamatek.http");

module.exports = (app) => {
    const router = new App.Router("/api");

    router.onRequest("GET", "/hello", (req, res) => {
        res.send("Hello, World!");
    });

    app.addRouter(router);
};

Serving Static Files

You can serve static files by adding them to the statics array in the App class. Specify the URL path and the local directory where the files are located:

const app = new App();

app.addRouter(router); // Add your router

app.addStatic("/static", `${__dirname}/public`, { maxAge: 3600 }); // Cache-Control 1h, default: "no-cache"

Rendering Dynamic Templates with EJS

To render dynamic HTML templates, you can use the EJS templating engine. Create an EJS template file (e.g., template.ejs) in a directory of your choice. You can render this template in a route handler like this:

router.onRequest("GET", "/dynamic", (req, res) => {
    // Read data or fetch data as needed
    const data = {
        title: "Dynamic Page",
        message: "Welcome to the dynamic page!",
    };

    // Render the EJS template
    res.render("path/to/template.ejs", data);
});

Make sure to customize the EJS template and data according to your application's needs.

Error Handling

Basic error handling for 404 and 500 errors is included. You can customize the error responses in the App class.

Utilities

This module provides a set of utility functions to assist you in handling and processing HTTP requests and responses. These utilities simplify common tasks when working with web applications.

handlerBody(req, options)

This utility function handles the request body asynchronously and returns a Promise that resolves with the request body as a buffer.

Options

  • parser: 'text', 'json', 'form-urlencoded': Specifies the format to parse the data into.
  • maxFileSize: The maximum allowed file size in bytes. If exceeded, the request is aborted.
  • onUploadProgress: A callback function that receives upload progress updates.

Example usage:

router.onRequest("POST", "/upload", async (req, res) => {
    try {
        const onUploadProgress = ({ total, loaded, speed, timeRemaining }) => {
            console.log(`${(loaded / total * 100).toFixed(1)}% ${App.utils.formatBytes(speed, 1)}/s ${App.utils.formatTime(timeRemaining)}`);
        };

        const options = {
            parser: 'json',
            maxFileSize: 10485760 // 10MB
            onUploadProgress,
        };

        const body = await handlerBody(req, options);

        // Process the request body
        console.log("Received request body:", body);

        // Send a response
        res.send("Request body received.");
    } catch (err) {
        console.error("Error handling request body:", err);
        res.sendStatus(500);
    }
});

Changes log

  • 07/25/2023: Publish the first release.