1.1.2 • Published 1 year ago

express-curl-generator v1.1.2

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Express-Curl-Generator

Simple, unopinionated, reusuable utility package for express.

import { reqtoCurl, ExpressResponseType } from 'express-curl-generator';
import { Request, Response, NextFunction } from 'express';
app.get('/', function (req, res) {


    // Console Logging
    reqtoCurl({
        request: req,
        type: ExpressResponseType.LOG,
      })
      
     // WRITE Logging
     reqtoCurl({
        request: req,
        type: ExpressResponseType.WRITE,
      })    
      
})

app.listen(3000)

Installation

This is a Node.js module available through the npm registry.

Before installing, download and install Node.js. Node.js 0.10 or higher is required.

If this is a brand new project, make sure to create a package.json first with the npm init command.

Installation is done using the npm install command:

$ npm install express-curl-generator

Follow our installing guide for more information.

Features

  • Console Logging
  • Write Curl request in a file
  • Convert Express Request to curl
  • Middleware

Quick Start

The quickest way to get started with Express-Curl-Generator is to utilize the executable express(1) to generate an application as shown below:

Install the executable. The executable's major version will match Express-Curl-Generator's:

$ npm install -g express-generator

Create the app:

$ express-curl-generator /tmp/foo && cd /tmp/foo

Install dependencies:

$ npm install

Start the server:

$ npm start

View the website at: http://localhost:3000

Contributing

Linux Build Windows Build Test Coverage

The Express Curl generator project welcomes all constructive contributions. Contributions take many forms, from code for bug fixes and enhancements, to additions and fixes to documentation, additional tests, triaging incoming pull requests and issues, and more!

See the Contributing Guide for more technical details on contributing.

People

The original author of Express is AMIR ANSARI

The current lead maintainer is ARUNACHALAM K

License

MIT

1.1.2

1 year ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago