Himanshu Yadav
Himanshu Yadav

Reputation: 13587

RESTful Web Service using 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.

Upvotes: 8

Views: 12961

Answers (2)

jenil christo
jenil christo

Reputation: 674

restify and loopback seems to be a better framework option for REST API's in node.Again it all depends on your use case when selecting a framework. If you want to create something very simple and high performant write your API with native node.js modules only .

Upvotes: 0

kemmott
kemmott

Reputation: 46

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?

Upvotes: 3

Related Questions