npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

npi-test

v1.1.0

Published

CLI API Tester: Effortlessly Test RESTful APIs from the Command Line. Real-time api-testing from cli.

Downloads

12

Readme

npi-test

npi-test is a lightweight command-line tool for testing RESTful APIs from the terminal. It supports various HTTP methods such as GET, POST, PUT, and DELETE, making it easy to perform comprehensive API testing directly from the command line.

Description

A command-line interface (CLI) tool for testing RESTful APIs with support for various HTTP methods such as GET, POST, PUT, and DELETE. Easily perform API testing directly from the terminal using this npm package.

Installation

You can install the package globally using npm

npm i -g npi-test

OR Project Specific Folder

npm i npi-test

Features

  • Test RESTful APIs using a simple CLI interface
  • Support for common HTTP methods: GET, POST, PUT, DELETE
  • Easily specify request URLs and data payloads
  • View detailed response data, status codes, and response times

CLI Usage Example

npi-test -u <url> -m <method> [-d <data>]
  • -u, --url: Specifies the URL of the API endpoint.
  • -m, --method: Specifies the HTTP method (GET, POST, PUT, DELETE).
  • -d, --data: Optional. Specifies the data to be sent with the request (for POST or PUT requests).

Example CLI Commands


npx npi-test -u https://jsonplaceholder.typicode.com/posts/1 -m GET

npx nnpi-test  -u https://jsonplaceholder.typicode.com/posts -m POST -d '{"title": "foo", "body": "bar", "userId": 1}'

npx npi-test  -u https://jsonplaceholder.typicode.com/posts/1 -m PUT -d '{"title": "bar", "body": "foo", "userId": 1}'

npx npi-test -u https://jsonplaceholder.typicode.com/posts/1 -m DELETE

Output

Return respose data with satus code and respose time.

 Response Data: {
 userId: 1,
 id: 1,
 title: 'sunt aut facere repellat provident occaecati excepturi optio reprehenderit',
 body: 'quia et suscipit\n' +
   'suscipit recusandae consequuntur expedita et cum\n' +
   'reprehenderit molestiae ut ut quas totam\n' +
   'nostrum rerum est autem sunt rem eveniet architecto'
}
Status Code: 200
Response Time: 295ms

Usage In The Code


    const { exec } = require('child_process');
    
    // Function to execute the npi-test CLI tool
    function testAPI(url, method, data) {
    const command = `npx npi-test -u "${url}" -m ${method}  ${data ? `-d '${JSON.stringify(data)}'` : ''}`;
    exec(command, (error, stdout, stderr) => {
    if (error) {
    console.error(`Error: ${error.message}`);
    return;
    }
    if (stderr) {
    console.error(`Error: ${stderr}`);
    return;
    }
    console.log(stdout);
    });
    }
    
    // Example usage
    const apiUrl = 'https://jsonplaceholder.typicode.com/posts';
    const method = 'POST';
    const requestData = {
    title: 'mytitle',
    body: 'data',
    userId: 1
    };
    testAPI(apiUrl, method, requestData);

Contributing

Contributions are welcome! If you find any bugs or want to add new features, feel free to open an issue or submit a pull request.

License

This project is licensed under the MIT License.