Fastest way to run a JSON server on my local machine
Posted
by
Mohsen
on Programmers
See other posts from Programmers
or by Mohsen
Published on 2012-06-20T22:27:20Z
Indexed on
2012/06/21
3:25 UTC
Read the original article
Hit count: 297
I am a front-end developer. For many experiemnets I do I need to have a server that talks JSON with my client side app. Normally that server is a simple server that response to my POSTs and GETs. For example I need to setup a server that saves, modifies and read data from a "library" database like this:
POST /books
create a bookGET /book/:id
gets a book
and so on...
What is the fastest and easiest technology stack for database and server in this case? I am open to use Ruby, Nodejs and anything that do the job fast and easy.
Is there any framework (on any language) that do stuff like this for me?
© Programmers or respective owner