Skip to content
This repository has been archived by the owner on Feb 17, 2022. It is now read-only.

Latest commit

 

History

History
36 lines (27 loc) · 956 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 956 Bytes

HAR to Node.js

It's a simple Node.js module that converts a requests to functions.

Installation

$ npm install -g hartonode

Usage

You can use it on three different ways.

  1. Use it to print output on the console or assign it to a variable

    Import as a module

    var htn = require('hartonode');

    and then use it as

    htn.harToNode('<harfile>');
  2. Generate a har file through your project.

    After import use function

    htn.harToNodeToFile('<harfile>')

    Output will be the file named as requests.ts and saved on the same folder

  3. Generate a har file through console

    In the console provide har-to-node <file_path>. Output from this is the same as in the 2nd point.

    WARNING! After providing this command in the console, you can get error Error: Cannot find module 'yargs'. Just install it also globally and try again to use this command