@feryardiant/apify
v0.0.5
Published
Zero-config fake REST API server.
Maintainers
Readme
Zero-config fake REST API server. 
Yet another fake REST API server based on my own needs. No config, no option, less foot-print, less dependencies and of course less functionalities, LOL. If you desire mor robust fake REST API server, pleace check typicode@json-server they've done greate job on that project tho.
Why don't I use that json-server project instead of create my own, if you ask? Because, why not. Obviously. :grin:
This project is aims to provide similar response and end-points structures provided by laravel
Limitations
- Since this project is hosted on zeit now all the limitations of free plan are applied, including 1k invocation / day. So, if you find the project is down, that's might be exceed max invocation.
Getting Started
Create db.json file with some data
{
"posts": [
{
"id": 1,
"users": {
"username": "john.doe",
"email": "[email protected]",
},
"title": "Foo Bar",
"contents": "Lorem Ipsum ..."
}
],
"albums": [
{
"id": 1,
"title": "Some Pictures",
"images": [
{
"name": "http://lorempixel.com/640/480"
},
{
"name": "http://lorempixel.com/640/480"
}
]
}
]
}Put that file into root directory of your public project on GitHub and visit:
http://apify.now.sh/:username/:reponame/:tableThe :table is either posts, albums or users from your db.json file.
That's it 🍻
Response
As I've already mentioned above this project will have similar response object like Laravel does, which is it will wrapped as data and meta. No links for now. So, if you have example data above and you access /:username/:reponame/albums for instance, it will returns like this:
{
"data": [
{
"id": 1,
"title": "Some Pictures"
},
{
"id": 2,
"title": "Another Pictures"
}
],
"meta": {
"current_page": 1,
"per_page": 15,
"total": 2,
"primary": "id",
"soft_deletes": true,
"timestamps": true,
"attributes": {
"id": {
"key": "id",
"label": "ID",
"visible": true,
"sortable": true,
"type": "number"
},
"title": {
"key": "title",
"label": "Title",
"visible": true,
"sortable": true,
"type": "text"
}
}
},
}The extra properties on meta object are simply because my recent front-end projects are using either bootstrap-vue or buefy so I think it would be useful if it has clear meta definition from response, so I don't have to re-parse them in client side.
NOTE Might be changed on future releases
Request
We only support application/json and application/x-www-form-urlencoded request Content-Type, so make suser you've set one of them on your request header.
Routing
Example above will generate 4 end-points
/:username/:reponame/posts/:username/:reponame/albumsbased onalbums.imagesarray/:username/:reponame/usersbased onposts.usersobject/:username/:reponame/images
Yes, we'll got extra end-points from any Array or Object values, that means our example above will become something like this.
{
"posts": [
{
"id": 1,
"users_id": 1,
"title": "Foo Bar",
"contents": "Lorem Ipsum ..."
}
],
"users": [
{
"id": 1,
"username": "john.doe",
"email": "[email protected]",
}
],
"images": [
{
"id": 1,
"albums_id": 1,
"name": "http://lorempixel.com/640/480"
},
{
"id": 2,
"albums_id": 1,
"name": "http://lorempixel.com/640/480"
}
],
"albums": [
{
"id": 1,
"title": "Some Pictures"
}
]
}NOTE: Unfortunately the relationship functionality is not fully implemented (yet). :sweat_smile:
All end-points supports GET, POST, PUT and DELETE, which is have (almost) the same structure as laravel resouce controller. Excepts for create and edit actions, also no PATCH, HEAD or OPTIONS support yet. Because I don't personally need it, if you ask. :grin:
Also, you might noticed that we convert relation name as is, no plural and singular conversion (yet). So if you have data like this:
{
"people": {
"id": 1,
"name": "John Doe",
"company": {
"name": "Acme Inc."
}
}
}Will become something like this:
{
"people": {
"data": [
{
"id": 1,
"name": "John Doe",
"company_id": 1
}
],
"meta": {}
},
"company": {
"data": [
{
"id": 1,
"name": "Acme Inc."
}
],
"meta": {}
}
}I'll implement this later on, if needed
Pagination
By default all returned data are paginated 15 rows per page and we use page and per_page query string to do so. Example:
/albums?page=2
/albums?page=2&per_page=15NOTE Might be changed on future releases
Ordering
The default ordering is id, descending. You're free to change data ordering whatever you like using sort key, like this:
/api/table?sort=id
// => sort: { id: 'desc' }
/api/table?sort.id
// => sort: { id: 'desc' }
/api/table?sort.id=asc&sort.created_at=asc
// => sort: { id: 'asc', created_at: 'asc' }
/api/table?sort[]=id&sort[]=created_at
// => sort: { id: 'desc', created_at: 'desc' }
/api/table?sort[]=id&sort.created_at=asc
// => sort: { id: 'desc', created_at: 'desc' }Filtering
NOT IMPLEMENTED YET
Credits
- typicode@json-server
License
MIT - Fery Wardiyanto
