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

xbuffer-connector

v0.5.16

Published

Xbuffer Connector

Downloads

2

Readme

xbuffer-connector

Connecting to Xbuffer API services

Installation

npm i xbuffer-connector

Required Pre Settings

Create a global variable of type object that can be accessed from anywhere in your application. The var name must be named "xbuffer". For example, if you're using VueJS or ReactJS, you need to assign the global variable in the "index.html" file inside the project's "public" folder.

var window.xbuffer = {
  path: 'https://api.xbuffer.net', // This is the default value. You can change the path name if you are given a different one.
  user: '...', // Your user account name that appears inside your account
  project: 'website', // Your project name that you've created inside your account
  appid: 'bb42a....5ea8:web', // The application ID that is created when you create a project. Change this value whenever you reset it.
  storage: { // This is optional if you don't want to change the defaults but it's required when you set your own.
    type: 'session',
    token: 'XbToken',
    refresh: 'XbRefresh',
    user: 'XbUser',
    email: 'XbEmail',
    logged: 'XbLogged'
  }
}

Usage

This is a very basic GET request example. More examples are going to be added in the documentation page.

import Xbuffer from 'xbuffer-connector'

var paramsToPass = {
  method: 'get', // Could be 'POST', 'PUT', or 'DELETE' based on the type of the request
  headers: false, // This must be 'true' if the request requires authentication
  data: {
    type: 'data', // This can be 'media' when you request an image or a file or 'data' if you want to query the database
    request: 'collection', // This is the database collection or table you want to query
    getby: 'type:article', // Example of different params you can use querying your database
    offset: this.offset, // More examples will be added to the documentation part
    max: this.max
  }
}
Xbuffer.connect(paramsToPass, response => {
  if(response.result) {
    // If you get a valid result, then you can do anything with the data that is sent to you
    // The data is going to be sent as an array: [response.data]
  } else {
    // This means an error has happened
    // The error you get contains an error code and an error message
    // response.data.code
    // response.data.message
  }
});

Example

Authentication