@feathersjs/client
Version:
A module that consolidates Feathers client modules for REST (jQuery, Request, Superagent) and Websocket (Socket.io, Primus) connections
9 lines (8 loc) • 361 B
TypeScript
import { feathers } from '@feathersjs/feathers';
import authentication from '@feathersjs/authentication-client';
import rest from '@feathersjs/rest-client';
import socketio from '@feathersjs/socketio-client';
export * from '@feathersjs/feathers';
export * as errors from '@feathersjs/errors';
export { authentication, rest, socketio };
export default feathers;