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

buildapi

v0.5.0

Published

Create api access module easily.

Downloads

63

Readme

buildapi

install

npm install buildapi

How

buildapi has two exports.

import buildapi, { Route } from 'buildapi'

buildapi

This is API builder function.

Route class

Define route extending Route class. In Route class, you can use methods below.

const fileId = 'dkfjaklfjdkfldjsflksdf'
const file = evt.file // File event object.

this.put(
  // set endpoint on first argument.
  `file/update/${fileId}`,
  // you can set post data on second argument.
  { key1: 'value1' },
  // you can set multipart/form-data values on third argument.
  { data: file }
)
  • get
  • post
  • put
  • delete
  • head
  • option
  • download

Usage

At first, define your routes extending Route object.

file_route.js

import { Route } from 'buildapi'
const e = encodeURIComponent

export default class File extends Route {
  fetchPermissions(id, cursor) {
    return this.get(`file/permissions/${e(id)}`, { cursor })
  }
  download(fileId) {
    return this.download(`file/data/${e(fileId)}`)
  }
  setAttribute(fileId, key, value) {
    return this.put(`file/attr/${e(fileId)}/${e(key)}/${e(value)}`)
  }
  delete(fileId) {
    return this.delete(`file/${e(fileId)}`)
  }
  fetchData(fileId) {
    return this.get(`file/data/${e(fileId)}`)
  }
  fetch(fileId) {
    return this.get(`file/${e(fileId)}`)
  }
  fetchChunk(fileId, chunkId, from, length) {
    return this.get(`file/data/${e(fileId)}/${e(chunkId)}/${e(from)}/${e(length)}`)
  }
  uploadChunk(fileId, chunkIndex, offset, length, file) {
    return this.put(`file/data/${e(fileId)}/${e(chunkIndex)}/${e(offset)}/${e(length)}`, {}, { data: file })
  }
}

And build your api with buildapi.

api.js

import buildapi from 'buildapi'

const routes = { File }

module.exports = buildapi({ routes, api: 'https://api.fata.io/v0/' })

And use api.

import API from './api.js'

const api = new API({
  // you can override api point.
  api: 'staging.server.api'
})

// access to endpoint.
api.file.fetchData('testsetsetset') // return Promise object
  .then(res => {
    //...
  })
  .catch(err => {
    console.error(err.status)
  })

Authorize support

buildapi supports Oauth token.

const api = new API() // instanciate your api.
api.setToken('fsjdkfjdlkfjdsfklsdjflksdf')

This set request header Authorization section internally.

req.set('Authorization', 'Bearer ' + tokenString)

Author

Yusuke Shibata

Lisense

MIT