express-curl-generator
v1.1.2
Published
Simple, unopinionated, reusuable utility package for [express](https://expressjs.com). ```js
Downloads
5
Readme
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
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