Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RESTful Web Service using Node js

Tags:

rest

node.js

I am new to node js and trying to publish a RESTful web service with it. I found few tutorials online but they are not very explanatory or meant for advanced users.


I did check rectify framework. But it seems to appropriate for advanced Node JS users.

like image 762
Himanshu Yadav Avatar asked May 08 '13 13:05

Himanshu Yadav


People also ask

Is Node.js GOOD FOR REST API?

Node. js has large and active community that contribute many useful and mature modules which can be easily included and used. For example, to construct REST API such known modules as express, restify and hapi fit perfectly.

Does Node.js have Web API?

One of the main reasons for using Node. js is that you can create quickly RESTful web APIs with it.


1 Answers

You might benefit from taking a look at a few of the frameworks that are out there that make that sort of thing easier.

Take a look at express.js or hapi.js and see how they build routes, etc.

How new are you to RESTful services in general?

like image 70
kemmott Avatar answered Oct 06 '22 23:10

kemmott