Giter Club home page Giter Club logo

vexdb's Issues

Move away from axios

This library is designed to be isomorphic and in order to do that, I have used axios, which is an isomorphic Promise-based fetch library. However, it is 10Kb big built and gzipped and has many features which are not required for this application. I will look to create a tiny promise-based library to replace it

Not Caching nodata requests?

Steps to reproduce:
Insert a debug line into the request function to see what network requests are made:

async function request(endpoint, params) {
    if (cache.has(endpoint, params)) return cache.resolve(endpoint, params);
    console.log("GET", endpoint, params);
const vexdb = require("vexdb")
vexdb.get("matches", {
    sku: "RE-VRC-17-3805",
    team: async team =>
        (await vexdb.size("teams", {
            team,
            region: "South Carolina"
        })) > 0
}).then(console.log)

Run the code and see that the request for GET teams { region: 'South Carolina', nodata: true } is being called for every match evaluated

getAll errors if no params are passed

.getAll() will throw an error if no parameters are passed

  1 failed

  getAll » .getAll() resolves for correct requests
  C:\Users\bmcgui7575\Documents\vexdb\main.js:185


   185:             (v, i) => get(endpoint, Object.assign(params, { limit_start: 5000 * i }))


  Error: Cannot convert undefined or null to object

  Promise.all.map (main.js:185:44)
  size.then.items (main.js:184:12)

This is because of the lack of || {} after params

Increase intelligence of `size()`

Right now, size is really stupid:

async function size(endpoint, params) {
    return get(endpoint, params)
        .then(res => res.length)
}

This can be improved by:

  • Sorting parameters so more nodata: true requests can be made
  • Making more raw requests

API design is too complicated right now

vexdb tries to do too much for the user. vexbot, which is one of the most in-depth uses for vexdb never uses any of the advanced features, and basically only needs caching, nice type support, and getting all records on a request. Right now, vexdb is trying to do too many things, and it's inflating the source code.

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.