Giter VIP home page Giter VIP logo

Comments (4)

terinjokes avatar terinjokes commented on July 1, 2024

Thanks for the feedback. Not taken personally.

The version here is designed after using (and writing) a number of API clients over the years, and aims to strike the right balance between feeling native and being easy to maintain. (v1, most certainly wasn't).

I've seen the other module, but it wasn't the direction I wanted to go here. You're welcome, of course, to continue using it.

from node-cloudflare.

sheerun avatar sheerun commented on July 1, 2024

OK. Here's what I currently use. Maybe you could add something like this to this library as it unleashes whole cloudflare API. Other methods could stay in backward-compatible way.

var got = require('got')

function cloudflare (config) {
  const headers = {
    'X-Auth-Email': config.email,
    'X-Auth-Key': config.key
  }

  async function request (url, params) {
    const result = await got(
      `https://api.cloudflare.com/client/v4/${url}`,
      Object.assign(
        {
          json: true,
          headers
        },
        params
      )
    )

    return result.body.result
  }

  return {
    get (url, query = {}) {
      return request(url, { method: 'GET', query })
    },
    delete: function (url, query = {}) {
      return request(url, { method: 'DELETE', query })
    },
    puts (url, body = {}) {
      return request(url, { method: 'PUT', body })
    },
    patch (url, body = {}) {
      return request(url, { method: 'PATCH', body })
    },
    post (url, body = {}) {
      return request(url, { method: 'POST', body })
    }
  }
}

from node-cloudflare.

terinjokes avatar terinjokes commented on July 1, 2024

What APIs do you use most? Aside from the two I already have tickets for, I don't know what to prioritize.

Obviously, the goal is all of them soon.

from node-cloudflare.

sheerun avatar sheerun commented on July 1, 2024

Sincerely I think it doesn't matter and there should be a method to access any api endpoint, even after 1 minute after cloudflare released it. Not days, not weeks, and certainly not months after.

from node-cloudflare.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.