Socket
Socket
Sign inDemoInstall

req-ajax

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

req-ajax

Standalone library for ajax requests


Version published
Weekly downloads
5
increased by400%
Maintainers
1
Weekly downloads
 
Created
Source

req-ajax

npm npm

Standalone library for ajax requests.

Installation

Execute this command in your project for install the package:

npm install req-ajax --save

Usage

Simple external script in your html file:

<script src="node_modules/req-ajax/dist/ajax.min.js"></script>

Also this can be used with webpack just require the module req-ajax.

API documentation

Ajax constructor

new Ajax(config)

the config object:

Properties
  • url - {String} is required.
  • method - {String} is required.
  • params - {Object} is optional, this property is for specific queries. The queries like this foo=bar&bar=foo can be transformed to { foo: 'bar', bar: 'foo' } in the JavaScript object notation, so is much better for make queries and easy.
  • fragment - {String} is optional, without the # character.
Methods
  • success(response) - {Function} is optional.
  • error(status, headers) - {Funcion} is optional.

Test

For the unit-test install the devDependencies and open the file test/index.html in your browser.

License

MIT

Keywords

FAQs

Package last updated on 20 Jan 2018

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc