New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

kequapp

Package Overview
Dependencies
Maintainers
0
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kequapp

Non-intrusive Node JavaScript web app framework

  • 0.8.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
26
decreased by-62.32%
Maintainers
0
Weekly downloads
 
Created
Source
kequapp

Non-intrusive Node JavaScript web application framework

\ `hek-yü-ap \

Introduction

Kequapp is a framework designed to leverage Node's built-in features while staying out of your way. It can be used to create performant api's, html pages, and anything you can think of. Kequapp provides a robust and flexible foundation to build your web applications with ease.

Documentation

For detailed documentation, guides, and more examples, please visit the official documentation website.

Upgrading

0.7.0 -> 0.8.0

Handles are now called actions. Replace all instances of "handle" with "action", "createHandle" with "createAction".

Installation

npm install kequapp

Hello World Example

Here's a simple example to get you started with Kequapp.

import { createServer } from 'http';
import { createApp } from 'kequapp';

const app = createApp({
    routes: [
        {
            method: 'GET',
            url: '/',
            actions: [() => 'Hello world!'],
        },
    ],
});

createServer(app).listen(4000, () => {
    console.log('Server running at http://localhost:4000');
});

Contributing

Contributions welcome! If you have any questions, need further assistance, or want to contribute, please visit our GitHub page.

License

Kequapp is licensed under the ISC license.

Keywords

FAQs

Package last updated on 07 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc