RESTful API , meaning and references | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

RESTful API , meaning and references

need more explanation hence created this post, looks like it's very important to know this and work on projects that deploy RESTful characteristics. read on many blogs that it will definitely help for your interviews and portfolio. so let's dig deeper into this topic

22nd Nov 2017, 6:10 AM
Morpheus
Morpheus - avatar
3 Answers
+ 3
this is what I got to know, *REST is "representational state transfer" a style of web architecture with many rules or constraints * whereas RESTful API means it is conforming to REST constraints *few REST constraints are 1.It helps create independent client and server implementation in any language without bothering each other during replacement of either client or server 2.stateless server, i.e. client needs to maintain session info 3.cacheable clients
22nd Nov 2017, 6:17 AM
Morpheus
Morpheus - avatar
+ 3
by Calvin If you know Javascript and want to fully understand how RestApi works, try to setup Rest api in Node Js using Express. Use Chrome extension, Postman to test out the CRUD operations of RestApi you build. It's not too complicated, you can find many tutorials from YouTube.
22nd Nov 2017, 7:32 AM
Morpheus
Morpheus - avatar