express-curl

1.0.1 • Public • Published

express-curl

Simple but effective, this ExpressJS middleware prints out the equivalent curl command. Typically this would be used as a utility for backend developers for replicating requests that may be causing problems.

Installation

Install the package by running the command below, from the root of your NodeJS project.

npm install --save express-curl

Usage

  1. Include the package in your ExpressJS app along with other dependencies.
const fs = require('fs');
const express = require('express');

// Include express-curl as a dependency
const expressCurl = require('express-curl);

let app = express();
...
  1. Declare this as a middleware just above the route definitions
app.use(bodyParser.json());
app.use(multiplart());
...

// Include the express curl middleware
app.use(expressCurl);

...
app.use('/auth', authRouter);
app.use('/users', usersRouter);

Now the stdout will print the curl.

Alt text

Readme

Keywords

Package Sidebar

Install

npm i express-curl

Weekly Downloads

50

Version

1.0.1

License

ISC

Unpacked Size

3.11 kB

Total Files

3

Last publish

Collaborators

  • sahilnarain