Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 315 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 315 Bytes

HTTP Request Form

Submits GET and POST requests using the HTML Forms

Usage

import { HttpRequestForm } from 'http-request-form'

const requestForm = new HttpRequestForm({
  url: 'http://example.com',
  method: 'POST',
  query: { foo: '123' },
  body: { bar: '321' }
})

requestForm.submit()