Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
API generator for the Vulpes job management framework
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.
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 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).
v0.2.1
2019-03-01
FAQs
API generator for the Vulpes job management framework
The npm package vulpes-api receives a total of 8 weekly downloads. As such, vulpes-api popularity was classified as not popular.
We found that vulpes-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.