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

xprezzo

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xprezzo

Fast, unopinionated, minimalist web framework

  • 1.0.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-73.68%
Maintainers
1
Weekly downloads
 
Created
Source

Xprezzo

A lightweight test-driven MVC framework.

Philosophy of Xprezzo

Problems faced:

  • Too many requires which creates problem when project grow
  • The dependencies update are slow
  • Test cases of difficult to design

How Xprezzo try to tackle those problems:

  • Useful internal libraries/packages are exposed
  • Merge small libraries into a larger one.
  • Provide easy to use test framework
const xprezzo = require('xprezzo')
const app = xprezzo()

app.get('/', function (req, res) {
  res.send('Hello World')
})

app.listen(3000)

Features

  • Robust routing
  • Focus on high performance
  • Super-high test coverage
  • HTTP helpers (redirection, caching, etc)
  • View system supporting 14+ template engines
  • Content negotiation
  • Executable for generating applications quickly

Examples

To view the examples, clone the Express repo and install the dependencies:

$ git clone git://github.com/xpreszzo/xpreszzo.git
$ cd xpreszzo
$ npm install

Then run whichever example you want:

$ node examples/content-negotiation

Tests

To run the test suite, first install the dependencies, then run npm test:

$ npm install
$ npm test

Exposes

  • exposed xprezzo-buffer
  • exposed xprezzo-debug
  • exposed xprezzo-mixin
  • exposed xprezzo-ms
  • exposed xprezzo-send

People

Xprezzo is maintained by Leolio Mcleon.

It is originated from Express and the current lead maintainer Express is Douglas Christopher Wilson

License

MIT

Keywords

FAQs

Package last updated on 27 Sep 2020

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