npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

theajax

v0.1.3

Published

Simple ajax library

Downloads

11

Readme

THE AJAX

Simple Ajax library. Still work in progress. This should NOT be used in production.

Attention! Library just appears like one of the fetch polyfills but it's NOT. I'm not planning to stick with fetch API. As example, fetch return promises. theajax returns promise-like object with support for .abort().

INSTALLATION

npm install theajax --save

or if You are using Yarn

yarn add theajax

USAGE

To use library, first add it to your project.

Adding script or importing using ES6 modules

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <script src="/path/to/theajax.js"></script>
</body>
</html>

This will expose global variable in case "window" is not undefined called "theajax". So from now one you have global variable "theajax".

If you are using some kind of package manager (like webpack) you can also install theajax via npm/yarn and import it as module:

import theajax from "theajax";

Making request

import theajax from "theajax";

theajax('https://api.wheretheiss.at/v1/satellites/25544').then(() => {
    document.write();
});

Changing method

import theajax from "theajax";

theajax('https://example.com/v1/user', {
    method: 'post',
    body: {
        name: 'Dariusz'
    }
}).then(() => {
    document.write();
});

Seinding form

You can send FormData, JSON or plain text.

import theajax from "theajax";

let data = new FormData();
data.append('name', 'Dariusz');

theajax('https://example.com/v1/user', {
    method: 'post',
    body: data
}).then((response) => {
    console.log(response);
});

Aborting requests

Sometimes you need to abort your request for some reason. theajax return promise-like object that gives you ability to do just that.

theajax('https://api.wheretheiss.at/v1/satellites/25544').abort();

IMPLMENETED:

  • send plain text, json object or form data
  • use different method types
  • very simple autodiscovery of mime type
  • ability to overwrite request mime type
  • aborting requests

TODO:

  • support for mode, credentials, cache, redirect, referrer and integrity
  • tests
  • browser support for IE and mobile browsers
  • more tests
  • better support for errors, timeouts etc