Skip to content

A Polymer element providing declarative data bindings to REST APIs

License

Notifications You must be signed in to change notification settings

platosha/rest-api

Repository files navigation

Bower version Build Status Gitter

rest-api

A Polymer element providing declarative data bindings to REST API.

Example

<link rel="import" href="/bower_components/rest-api/rest-api.html">
<link rel="import" href="/bower_components/rest-api/rest-api-resource.html">

<rest-api url="http://localhost:3000">
  <rest-api-resource name="books" collection="{{books}}"></rest-api-resource>
</rest-api>

Documentation and Live Demo

See API documentation.

Check the Albums Demo, the fully declarative albums browser which uses JSON Placeholder API.

Install

This element is distributed via Bower. You can install Bower it with npm:

npm install -g bower

Then use Bower to install rest-api:

bower install rest-api

After running the command above, you should get bower_components directory in your project, containing rest-api and the dependencies.

Development Instructions

Dependencies

Element dependencies are managed with Bower. Use this command to install the required dependencies:

bower install

Running the Development Server

<rest-api> needs a REST API (sic) to work with. This repository includes a very handy development server configuration with integrated backend, based on BrowserSync and JSON Server. Just install npm dependencies:

npm install

Then you can run the server with:

npm start

Once running, your browser should automatically navigate to the element's page. By default, it is served from http://localhost:3000/components/rest-api/. Now that you have a backend, the JSON Server Demo should work.

You can also browse the API at http://localhost:3000/api/. The mock data is generated automatically and stored in db.json file. To regenerate the API data, delete the db.json file and start the server again.

Press Crtl+C to stop the development server when it is not needed.

Running Tests

Navigate to the /test directory of the element to run its tests, e.g.: http://localhost:3000/components/rest-api/test/

The tests are done with the web-component-tester.

License

Copyright 2015 Anton Platonov [email protected]

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.