🚀 Launch Week Day 4:Introducing the Alert Details Page: A Better Way to Explore Alerts.Learn More →
Socket
Book a DemoInstallSign in
Socket

httpness

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package version was removed
This package version has been unpublished, mostly likely due to security reasons

httpness

Simple AF CLI HTTP client

unpublished
Source
npmnpm
Version
1.0.3
Version published
Weekly downloads
5
150%
Maintainers
1
Weekly downloads
 
Created
Source

🌏 httpness 🌏

Simple AF CLI HTTP client

NPM version Downloads Standard Travis Build Standard Readme GitHub version

Built with ❤︎ by Tiaan and contributors

Table of Contents

Table of Contents
  • about
  • Install
  • Usage
  • API
  • Contribute
  • License
  • About

    This cli module is a simple HTTP client similar to httpie, but with a lot less functionality. It is build on top of node-fetch and uses prettyjson to provide nice formatting.

    Install

    $ npm install -g httpness
    

    Or

    $ yarn add global httpness
    

    Usage

    After the module has been installed globally, it can be called from the terminal:

    $ httpness --url=https://jsonplaceholder.typicode.com/posts/1
    

    This will output:

    GET example

    It also supports other HTTP methods like POST:

    $ httpness --url=https://jsonplaceholder.typicode.com/posts --method=POST --body={title: 'Hi', body: 'Friend', userId: 1}
    

    This will output:

    POST example

    API

    The following argument flags are supported:

    FlagDescriptionDefaultExample
    --url, -url, --u or -uThe URL to make request to. Required---url=https://jsonplaceholder.typicode.com/posts/1
    --method, -method, --m or -mThe HTTP method to use.GET--method=POST
    --body, -body, --b or -bBody to send with request.''--body={title: 'Hi', body: 'Friend', userId: 1}
    --headers, -headers, --h or -hHeaders to send with request.{}--headers={Content-Type: 'application/json; charset=utf-8'}
    --credentials, -credentials, --c or -cCredentials to send with request.''--credentials=same-origin

    Contribute

    Contributions are welcome. Please open up an issue or create PR if you would like to help out.

    Note: If editing the README, please conform to the standard-readme specification.

    License

    Licensed under the MIT License.

    Keywords

    http

    FAQs

    Package last updated on 24 Nov 2025

    Did you know?

    Socket

    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.

    Install

    Related posts