0.3.0 • Published 5 years ago

asynchrolicious v0.3.0

Weekly downloads
27
License
MIT
Repository
github
Last release
5 years ago

Asynchrolicious

Tiny JavaScript module to send asynchronous requests.

Usage

Add to your node_modules via package.json or use your package manager:

yarn install asynchrolicious
npm i asynchrolicious

Import into your code:

import myLessSillyAlias from 'asynchrolicious';

Method outline

  /**
   * takes a URL and a Map (parameters => arguments), sends a request and returns a Promise resolving to the response
   *
   * supported methods are GET (default) and POST
   * POST requests will be sent as content type x-www-form-urlencoded
   *
   * for status(es) other than 200, the Promise will be rejected, yielding an object (as described below) containing the returned status and the responseText
   *
   * @param {String} url
   * @param {Map} [data] optional
   * @param {String?} [method] defaults to GET
   * @returns {Promise<String|{{status: number, responseText: string}}>} response
   */
  const request = (url, data, method) => {/*...*/}

  /**
   * iterates over a Map mapping parameters to arguments and returns a GET string
   *
   * brackets will automatically be added to parameter names of array types, so the following Map:
   *
   * new Map([
   *  ['scalarParam', 'scalarArg'],
   *  ['vectorParam', [1,2] ]
   * ]);
   *
   * will produce:
   *
   * '?scalarParam=scalarArg&vectorParam[]=1&vectorParam[]=2'
   *
   * @param {Map} [data]
   * @return {String}
   */
  const parseParameters = data => {/*...*/}

  /**
   * takes the optional getString or the current location.href and turns it into a Map understood by parseParameters
   *
   * @param {String} [getString] optional
   * @return {Map}
   */
  const parseHref = getString => {/*...*/}

Missing (and maybe upcoming) features

  • Arbitrary depth of Array-type parameters for parseParameters and parseHref, e.g.
    ?parameter[tier1][tier2][tier3]=argument
0.3.0

5 years ago

0.2.0

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago