An open API service indexing awesome lists of open source software.

https://github.com/haggen/buckety

Mind your front end.
https://github.com/haggen/buckety

Last synced: 3 months ago
JSON representation

Mind your front end.

Awesome Lists containing this project

README

        

# Buckety

> Mind your front end.

- RESTful
- NoSQL
- Fast start
- Authorize with UID+CORS

**Note:** Not ready for production. This project still in very early stages of development and currently aims only to support prototyping applications.

## Usage:

Each application has a registry in our database:

```javascript
{
_id: '...',
name: '...',
origin: '*',
}
```

Now your application is ready to store and retrieve data:

```
GET http://127.0.0.1:4567/<_id>/ //=> [...]
GET http://127.0.0.1:4567/<_id>//<_id> //=> {...}
POST {...} http://127.0.0.1:4567/<_id>/ //=> 201
PUT {...} http://127.0.0.1:4567/<_id>//<_id> //=> 200
DELETE http://127.0.0.1:4567/<_id>//<_id> //=> 200
```