Socket
Socket
Sign inDemoInstall

event_request

Package Overview
Dependencies
0
Maintainers
1
Versions
243
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    event_request

A Backend Server


Version published
Weekly downloads
247
increased by2145.45%
Maintainers
1
Install size
332 kB
Created
Weekly downloads
 

Readme

Source

EventRequest

A highly customizable, async-first, speed-oriented backend server in NodeJs. The latest 3 LTS versions of node are targeted for support.

linux-12.x linux-14.x linux-16.x linux-18.x

windows-12.x windows-14.x windows-16.x windows-187.x

Codacy Badge

CodeFactor Codacy Badge DeepScan grade

GitHub last commit GitHub last commit (branch) GitHub issues Maintenance Known Vulnerabilities npm version npm npm

CHANGELOG || BENCHMARKS

Documentation:

Check out the docs section or go to: Documentation.

Contents

  • Getting Started - What this framework does and how does it operate?
  • Event Request - The main object passed through every middleware
  • Server - Server object used to attach to the http server
  • Routing - How routing works
  • Functionality

Quick Setup

// Framework Singleton instance
const app = require( 'event_request' )();

// Add a new Route
app.get( '/', ( event ) => {
 event.send( '<h1>Hello World!</h1>' );
});

// Start Listening
app.listen( 80, () => {
 app.Loggur.log( 'Server started' );
});

External Plug-ins:

Example Projects:

Keywords

FAQs

Last updated on 02 Jul 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc