🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

ts.httprequest

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts.httprequest

simple abstractions and methods to common HTTP operations.

latest
Source
npmnpm
Version
1.4.3
Version published
Maintainers
1
Created
Source

HTTPRequest Titanium Alloy License

This module for the Appcelerator Titanium Alloy MVC framework is built on the top of the Titanium HTTPClient. It provides simple abstractions and methods to common HTTP operations.

The module defines some shortcut to quickly set headers or data for a request. Also, it will automatically parse the response and return a JSON object if the corresponding header is application/json.

Quick Start

Get it gitTio

Download this repository and install it

  • In your application's tiapp.xml file, add the module to the modules section:
<modules>
    <module platform="commonjs">ts.httprequest</module>
</modules>
  • Copy the ts.httprequest-commonjs-x.x.x.zip bundle into your root app directory.

Or use your favorite package manager

  • gitTio: gittio install ts.httprequest

Use it

var HTTPRequest = require('ts.httprequest');

var request = new HTTPRequest({
    method: 'POST',
    url: 'http://www.url.com'
    data: {
        key: 'value'
    },
    headers: {
        key: 'value'
    },
}).then(handleSuccess).catch(handleError);

API

new HTTPRequest(config) :: Promise

Create a new request ready to be sent

  • {Object} config Config object with the following properties:
    • {String} config.url URL to reach with the request
    • {String} [config.method="GET"] defines method (POST, GET, PUT, DELETE)
    • {Object} [config.headers={}] defines request's headers
    • {Object} [config.data={}] defines request's data
    • {Number} [config.timeout=10000] defines request's timeout (ms)
    • {Function} config.success progress callback
  • return {Promise} A Promise resolved with the request response (formatted)

Changelog

  • 1.4 Upgrade

    • An es6-promise is now returned by the constructor
    • A progress option is now available as a callback to handle progress
  • 1.3 Upgrade

    • Mainly fixes and refactor in the code
    • Remove the dependency to underscore
  • 1.0 First version

wearesmiths

Appcelerator, Appcelerator Titanium and associated marks and logos are trademarks of Appcelerator, Inc.
Titanium is Copyright (c) 2008-2015 by Appcelerator, Inc. All Rights Reserved.
Titanium is licensed under the Apache Public License (Version 2).

Keywords

Titanium

FAQs

Package last updated on 30 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts