Skip to content

Zero-config fake REST API server πŸ”₯

License

Notifications You must be signed in to change notification settings

feryardiant/apify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

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 wish more robust fake REST API server, please check json-server by @typicode they've done great job on that project though.

Why don't I use that json-server project instead of create my own, if you ask? Because, why not. Obviously. 😁

This project is aims to offer similar response and end-points structures provided by laravel

Limitations

  • This project is hosted on vercel' free plan at the moment. So, all the limitations of free plan are applied, including 1k invocation / day. So, if you find the project is down, that's probably has exceeded max invocation.
  • Only supports GitHub repositories

Getting Started

All you need to do is creating file called .apify.json in your root project. Example:

{
  "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"
        }
      ]
    }
  ]
}

Don't forget to commit and push to your github repository, done? now you can access your fake api through URL below:

http://apify.vercel.com/:username/:reponame/:table

The :table is either posts, albums or users from your .apify.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/albums based on albums.images array
  • /:username/:reponame/users based on posts.users object
  • /: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). πŸ˜…

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. 😁

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=15

NOTE 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

License

MIT - Fery Wardiyanto