Git Product home page Git Product logo

npi-test's Introduction

npi-test

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.

npi-test's People

Contributors

prasadjivane avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.