Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Octokit.rb | 3,764 | 36,226 | 665 | 3 days ago | 129 | September 14, 2022 | 60 | mit | Ruby | |
Ruby toolkit for the GitHub API | ||||||||||
Tall | 1,906 | 1 | a month ago | 24 | March 13, 2022 | 7 | mit | Blade | ||
A TALL (Tailwind CSS, Alpine.js, Laravel and Livewire) Preset for Laravel | ||||||||||
Robinhood | 1,453 | 3 years ago | unlicense | |||||||
Unofficial Documentation of Robinhood Trade's Private API | ||||||||||
Larapi | 400 | 2 years ago | 27 | mit | PHP | |||||
An API-friendly fork of Laravel. Authentication, error handling, resource filtering, sorting, pagination and much more included | ||||||||||
Trakt.tv | 131 | 87 | 17 | a month ago | 32 | October 23, 2021 | JavaScript | |||
A Trakt.tv API wrapper for Node.js | ||||||||||
Registration Login And Crud Action Using Mern Stack | 116 | 8 days ago | gpl-3.0 | JavaScript | ||||||
:high_brightness: :leaves: Nodejs(Express.js) + mongoDB + mongoose + JWT + react.js + material-ui + axios(API call) | ||||||||||
Ember Cli Blog | 88 | 2 years ago | n,ull | JavaScript | ||||||
Tom Dale's blog example updated for the Ember CLI | ||||||||||
Swagql | 46 | 2 years ago | 21 | October 25, 2021 | 4 | bsd-3-clause | JavaScript | |||
Create a GraphQL schema from swagger spec | ||||||||||
Blogging App With Angular Cloudfirestore | 44 | 4 months ago | 14 | mit | TypeScript | |||||
A blogging application created with the help of Angular on front-end and Google Cloud Firestore on backend. | ||||||||||
Hackeroni | 37 | 6 years ago | 9 | mit | Go | |||||
A Go API client for HackerOne (api.hackerone.com) |
Simple access from your client to Grape APIs. Automatically supports: kaminari pagination, network access cache, nested objects, http basic authentication.
Add this line to your application's Gemfile:
gem 'grape-client'
And then execute:
$ bundle
Or install it yourself as:
$ gem install grape-client
class User < GrapeClient::Base
self.site = 'http://localhost:3000'
self.user = 'user'
self.password = 'password'
self.prefix = '/api/v1/'
attr_accessor :id, :email
end
u = User.create(email: '[email protected]mple.com')
u.email = '[email protected]'
u.save!
u.reload
u = User.find(2)
u.destroy
User.all.each do |user|
...
end
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)