/httpsnippet

HTTP Request snippet generator for most languages

Primary LanguageJavaScript

HTTP Snippet version License

HTTP Request snippet generator for most languages.

Relies on the popular HAR format to import data and describe HTTP calls.

Build Status Downloads Code Climate Coverage Status Dependencies

Table of contents

Targets

currently the following output targets are supported:

Installation

install from source or through npm:

# to use in cli
npm install --global httpsnippet

# to use as a module
npm install httpsnippet

Usage

CLI

Usage: httpsnippet [options] <file>

Options:

  -h, --help                output usage information
  -V, --version             output the version number
  -t, --target <target>     target output
  -c, --client [client]     target client library
  -o, --output <directory>  write output to directory
  -n, --output-name <name>  output file name

Example

process single file (assumes HAR Request Object Format):

EXAMPLE: my-api-endpoint.json
{
  "method": "POST",
  "url": "http://mockbin.com/request",
  "httpVersion": "HTTP/1.1",
  "queryString": [
    { "name": "foo", "value": "bar" },
    { "name": "foo", "value": "baz" },
    { "name": "baz", "value": "abc" }
  ],
  "headers": [
    { "name": "Accept", "value": "text/plain" },
    { "name": "Content-Type", "value": "application/json" },
    { "name": "X-Foo-Bar", "value": "Baz" }
  ],
  "cookies":  [
    { "name": "foo", "value": "bar" },
    { "name": "bar", "value": "baz" }
  ],
  "postData": {
    "mimeType": "application/json",
    "text": "{\"foo\": \"bar\"}"
  }
}
httpsnippet my-api-endpoint.json --target php --output ./snippets
$ tree snippets
snippets/
└── my-api-endpoint.php

process multiple files:

httpsnippet /*.json --target node --client native --output ./snippets
$ tree sources/
sources/
├── endpoint-1.json
├── endpoint-2.json
└── endpoint-3.json
$ tree snippets/
snippets/
├── endpoint-1.js
├── endpoint-2.js
└── endpoint-3.js

Module

var httpsnippet = require('httpsnippet');

var snippet = new httpsnippet({
  method: 'GET',
  url: 'http://mockbin.com/request'
});

// generate cURL output
console.log(snippet.convert('curl', {
  indent: '\t';
}));

// generate nodeJS output
console.log(snippet.convert('node'));

// generate PHP output
console.log(snippet.convert('php', 'curl'));

Documentation

At the heart of this module is the HAR Request object as the http request description format, please review some of the sample JSON HAR Request objects in test fixtures, or read the HAR Docs for more details.

Output Targets

output targets are simple modules that expose a constructor (which handles the transformation) and a meta info property.

module.exports = function (opts) {
  // optionally process `opts` object for target specific configuration
  // 
  // process `this.source` object
  // 
  // return processed output as string
};

module.exports.info = {
  key: 'curl',
  title: 'cURL',
  link: 'http://curl.haxx.se/',
  description: 'curl is a command line tool and library for transferring data with URL syntax',
  extname: '.sh'
};

Target Options

cURL

Option Default Description
short false use short form of cURL CLI options
indent line break & indent output value, set to false to disable line breaks

Go

Option Default Description
errorChecking false add error checking for request, response and body
printBody true include code to print the body as a string
timeout -1 sets a request timeout in seconds (requires go 1.3+)

HTTPie

Option Default Description
body false only the response body is printed
headers false only the response headers are printed
verbose false print the whole HTTP exchange (request and response)
print false selects parts of the HTTP exchange, e.g. --print=Hh (see httpie docs)
cert false use a client side certificate (see httpie docs)
verify false server SSL certificate verification (see httpie docs)
pretty false syntax highlighting (see httpie docs)
style false syntax highlighting (see httpie docs)
timeout false overwrite the default 30s timeout
short false use short form of cURL CLI options
indent line break & indent output value, set to false to disable line breaks

Wget

Option Default Description
short false use short form of cURL CLI options
indent line break & indent output value, set to false to disable line breaks
verbose false by default, --quiet is always used, unless verbose is set to true

Bugs and feature requests

Have a bug or a feature request? Please first read the issue guidelines and search for existing and closed issues. If your problem or idea is not addressed yet, please open a new issue.

Contributing

Please read through our contributing guidelines. Included are directions for opening issues, coding standards, and notes on development.

More over, if your pull request contains JavaScript patches or features, you must include relevant unit tests.

Editor preferences are available in the editor config for easy use in common text editors. Read more and download plugins at http://editorconfig.org.

Versioning

For transparency into our release cycle and in striving to maintain backward compatibility, this project is maintained under the Semantic Versioning guidelines. Sometimes we screw up, but we'll adhere to these rules whenever possible.

Releases will be numbered with the following format:

<major>.<minor>.<patch>

And constructed with the following guidelines:

  • Breaking backward compatibility bumps the major while resetting minor and patch
  • New additions without breaking backward compatibility bumps the minor while resetting the patch
  • Bug fixes and misc changes bumps only the patch

For more information on SemVer, please visit http://semver.org/.

License

Licensed under The MIT License.