Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

expi

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expi

Modular API framework built with express

  • 2.0.17
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
14
increased by40%
Maintainers
1
Weekly downloads
 
Created
Source

Expi Logo

expi

Modular, Minimalistic API Framework built with express.

Installation

Install expi using

$ npm install --save expi

Example

A working example can be found in the modules root folder.

$ node node_modules/expi/example/app.js

or

$ cd node_modules/expi && npm run example

TODO

  • Documentation for:
    • Module
    • Method
    • Route
    • Expi
  • Linting
  • Testing
  • Add new features
    • Dedicated session/authentication hook
    • Custom response schema
    • Extended response functionality
    • Clusterization
    • Extended versioning (Provide versioned modules under special routes for backward compatablility)
    • New layer ontop of route parameters
  • Expose all express functions without interfering with expi functionality
  • Proper releases
  • Build tasks
  • Handling preRoutes middleware while still returning 404 on module path without a route specified
  • Handle default errors, http codes, bad requests etc.

Documentation

A small overview over the functionality expi provides

Expi.Module(options)

Usage:

    let Module = require('expi').Module
    let module = new Module(options)

Configuration:

  • options
    • name: The name of the Module, this gets displayed as response.meta.name
    • version: The version of the Module, this gets displayed as response.meta.version
    • path: The base path of the module. This path is relative to the root path of the server.
    • ?middleware
      • preRoutes: Array of functions, these functions are plugged in as middleware before any routes and even before the internal expi-middleware
      • postRoutes: Array of functions, these functions are pluggin in as middleware after all routes and even after the internal expi-middleware (Caution: if expi-middleware is active, a response might be sent already!)
    • routes: Array of expi.Route instances
    • ?methods: Array of expi.Method instances

More documentation coming soon, for details take a look at the example in expi_root/example

(This module is in an early state, use with caution)

Keywords

FAQs

Package last updated on 21 Apr 2017

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