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

@rajgupta23/zen-server

v1.0.1

Published

This is light weight HTTP server which JSON parsing, Protobuf parsing and Clustering out of the box

Downloads

7

Readme

Zen-Server

Zen-Server is a lightweight, fast, and flexible HTTP server for Node.js. It provides a simple API for creating web applications with support for middleware, routing, and various parsing options.

Features

  • Easy-to-use API similar to Express.js
  • Support for middleware
  • Built-in routing for GET, POST, PUT, and DELETE methods
  • Optional JSON and Protobuf parsing
  • TypeScript support out of the box

Installation

npm install zen-server

Quick Start

import Zen from 'zen-server';

const app = new Zen();
app.start();

app.get('/', async (req, res) => {
  res.send('Hello, World!');
});

app.post("/post", (req, res) => {
    res.status(200).json({
        success: true
    });
})

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

API

Creating a server

import Zen from 'zen-server';
const app = new Zen();
app.start()

Routing

app.get(path, handler)
app.post(path, handler)
app.put(path, handler)
app.delete(path, handler)

Example:

app.get('/users', async (req, res) => {
  // Handle GET request
});

app.post('/users', (req, res) => {
  // Handle POST request
});

path based async Middleware

app.use(middleware, [path])

Example:

app.use(async (req, res, next) => {
  console.log('Request received:', req.method, req.url);
  await next();
});

Request and Response

The req object provides information about the HTTP request:

  • req.method: The HTTP method of the request
  • req.url: The URL of the request
  • req.headers: The headers of the request
  • req.body: The body of the request (if parsed)

The res object provides methods to send the response:

  • res.status(code): Set the status code
  • res.send(body): Send a response
  • res.json(body): Send a JSON response
  • res.append(name, value): Append a header

Parsing

Enable JSON parsing:

app.enableJsonParsing();

Enable Protobuf parsing (Feauture will be available on v1.1):

app.enableProtobufParsing();

Starting the server

app.start()

Example:

app.start(3000).then(() => {
  console.log('Server running on http://localhost:3000');
});

Create clusters of server to handle blocking operation parallely

app.enableCluster([NO_OF_WORKERS]);

TypeScript Support

Zen-Server is written in TypeScript and provides type definitions out of the box.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request. github : https://github.com/rajgupta-ml/zen-

License

This project is licensed under the MIT License.