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

vulpes-api

Package Overview
Dependencies
Maintainers
5
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vulpes-api

API generator for the Vulpes job management framework

  • 0.5.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11
increased by10%
Maintainers
5
Weekly downloads
 
Created
Source

Vulpes-API

API generator for the Vulpes job management framework

Build Status

About

Vulpes is a NodeJS job management framework, designed to provide a solid base to build automation projects upon. This library provides an interface that exports an ExpressJS API (Router) that can be used to instantly provide an API endpoint for your job management platform.

Installation

Install by running npm install vulpes-api --save. Vulpes-API depends on vulpes as a peer dependency, so you must have that installed as well.

Usage

Usage is quite simple - assuming that you have an existing ExpressJS setup:

const express = require("express");
const { Service } = require("vulpes");
const { createVulpesAPIRouter } = require("vulpes-api");
const app = express();
const port = 3000;

// Create a new service
const service = new Service();

service.initialise().then(() => {
    app.get("/", (req, res) => {
        res.send("...");
    });

    app.use("/api", createVulpesAPIRouter(service));

    app.listen(port, () => {
        console.log(`Application listening on port ${port}`);
    });
});

The primary method createVulpesAPIRouter takes a Vulpes Service instance as the first paramter:

createVulpesAPIRouter(service, {
    cors: true,
    log: logInstance
});

The options parameter is optional, as are all of its subsequent properties. The log parameter expects an object or instance that provides methods like info, warn, error etc. (much like Bunyan). The exported value is basically an ExpressJS Router instance (actually from express-promise-router).

Keywords

FAQs

Package last updated on 08 Apr 2019

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