Skip to content

A sample structure for building a REST API on top of hapi.js framework

License

Notifications You must be signed in to change notification settings

denneulin/sample-hapi-rest-api

 
 

Repository files navigation

##Sample hapi.js REST API

A sample structure for building a REST API on top of hapi.js framework that consumes a MySQL database.


Start by cloning this repo and going inside the project's folder:

$ git clone git@github.com:agendor/sample-hapi-rest-api.git
$ cd sample-hapi-rest-api

To begin with, we have to define some environment variables (with an Ubuntu 12.04 you can edit the ~/.bashrc file):

export NODE_ENV=development
export NODE_HOST=localhost
export NODE_PORT=8000
export DB_DEV_USER=root
export DB_DEV_PASS=rootpass

PS: Don't forget to alter DB_DEV_USER AND DB_DEV_PASS values properly to access your MySQL Database.

Then you have to give permission to the script database.sh:

$ chmod +x database.sh

After giving permission, you can run it. It's going to drop and then re-create a MySQL Database called hapi-todo with user and task tables and insert a default user, which credentials are:

So run it:

$ bash database.sh

Database setup. So it's time to install project dependencies, run the following command:

$ npm install

Now you can check the recently created database in you MySQL. Start the server by running grunt in the terminal:

$ grunt

All the unit tests will run and everything should be green.

That's it! You should be able to play around your API GETting, POSTing, PUTing AND DELETEing Tasks. The end-points are as described in the src/routes/task.js file:

##Further reading

If you want a deeper analysis of the project, checkout this Gist.

About

A sample structure for building a REST API on top of hapi.js framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 77.9%
  • JavaScript 21.1%
  • Other 1.0%