Want100Cookies / feathersjs-client

A web component wrapper around the feathersjs-client library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Published on webcomponents.org

<feathersjs-client>

A web component wrapper around the feathersjs-client library that also takes care of establishing a server connection. If you are not familiar with feathers.js please check out their awesome website http://feathersjs.com/.

A typical use case looks like this:

<feathersjs-client app="{{app}}" server="{{url}}" connected="{{isConnected}}"></feathersjs-client>

When the server url is set, feathersjs-client tries to establish a connection to the server. Once this is successful the connected attribute is set to true, the feathersjs-connected event is thrown and the app property is set. The app property then can be used to access a feather.js service:

var service = app.service('todos');
service.on('created', todo => console.log('Created a todo', todo));

// Use the service from the server
service.create({
  text: 'Create a new app'
});

About

A web component wrapper around the feathersjs-client library.

License:Apache License 2.0


Languages

Language:HTML 100.0%