GithubHelp home page GithubHelp logo

rapidjs / rapidjs.io Goto Github PK

View Code? Open in Web Editor NEW
2.0 4.0 1.0 2.33 MB

The docs for rapid.js

Home Page: http://rapidjs.io

PHP 53.09% JavaScript 20.66% HTML 13.04% Vue 13.21%
php laravel docs rapidjs rapid js

rapidjs.io's People

Contributors

ayhandoslu avatar drewjbartlett avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

ayhandoslu

rapidjs.io's Issues

Add routes() method

route () {
        // get the route that would be generated ?
        //
        //
        //
        // come back to this in a later version
    }

// would love to have this work
rapid.withParams({ foo: 'bar' }).findBy('category', 'latest').route(); => /api/category/latest?foo=bar

Make a sample endpoint interface

Would love to show how you could wrap this:

https://developers.google.com/places/web-service/search

class GoogleMapsPlace extends Rapid {
    
    textSearch (query) {
        this.withParam({ query: query });

        return this;
    }

    json () {
        this.setURLParams('json');

        return this;
    }

    xml () {
        this.setURLParams('xml');

        return this;
    }
}

var GoogleMapsPlaces = new GoogleMapsPlace({
   baseURL: 'https://maps.googleapis.com/maps/api/place',
   globalParameters: {
      key: 'YOUR_API_KEY'
   }
});

GoogleMapsPlaces.textSearch('123+main+street').json().get();

// https://maps.googleapis.com/maps/api/place/textsearch/json?query=123+main+street&key=YOUR_API_KEY

write registerRelationships function

write a method to registerRelationships. So if given this:

users () {
   return this.hasMany(UserModel, 123);
}

// should now call 

this.users().get();

this.relationships.users.find(1);

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.