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.
- Host: GitHub
- URL: https://github.com/haggen/buckety
- Owner: haggen
- Created: 2013-03-23T00:54:49.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-04-22T13:15:27.000Z (about 12 years ago)
- Last Synced: 2024-04-14T02:24:10.018Z (about 1 year ago)
- Language: JavaScript
- Homepage: http://buckety.herokuapp.com
- Size: 117 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```