Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aaronpowell/urested
A convenience wrapper around the Umbraco RestApi to remove the boilerplate you would have to write
https://github.com/aaronpowell/urested
Last synced: about 1 month ago
JSON representation
A convenience wrapper around the Umbraco RestApi to remove the boilerplate you would have to write
- Host: GitHub
- URL: https://github.com/aaronpowell/urested
- Owner: aaronpowell
- License: mit
- Created: 2015-06-18T10:51:32.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-18T10:53:07.000Z (over 9 years ago)
- Last Synced: 2024-11-17T19:46:35.384Z (about 2 months ago)
- Language: C#
- Size: 133 KB
- Stars: 3
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: License.md
Awesome Lists containing this project
README
# uRested
uRested is a JavaScript API around the [Umbaco REST API](https://github.com/umbraco/umbracorestapi) that was annonced at CodeGarden 15.
# Why?
While the HAL spec is what is being followed and it's fairly discoverable there is still quite a bit of boilerplate code that needs to be written to follow the links, make the AJAX calls, expose responses, etc.
The aim is to have a simple API that sits over the top the exposed API.
# Tech
This API is meant to be agnostic of any tech that isn't in browsers and not tied to any framework so it relies on:
* [fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch) for AJAX
* [babel](http://babeljs.io/) so it can be written in ES6# Demo
There's a full demo in the `demo` folder, setup the Umbraco instance in there and then run the node application to test it out.