All Projects → ppjjzz → rjax

ppjjzz / rjax

Licence: MIT license
base on rxjs awesome ajax library

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to rjax

Awesome Rxjs
Awesome list of RxJS 5
Stars: ✭ 141 (+123.81%)
Mutual labels:  rxjs, observable
ng-observe
Angular reactivity streamlined...
Stars: ✭ 65 (+3.17%)
Mutual labels:  rxjs, observable
Jupyterlab Data Explorer
First class datasets in JupyterLab
Stars: ✭ 146 (+131.75%)
Mutual labels:  rxjs, observable
Rxjs Hooks
React hooks for RxJS
Stars: ✭ 1,953 (+3000%)
Mutual labels:  rxjs, observable
rxjs-proxify
Turns a Stream of Objects into an Object of Streams
Stars: ✭ 34 (-46.03%)
Mutual labels:  rxjs, observable
Redux Most
Most.js based middleware for Redux. Handle async actions with monadic streams & reactive programming.
Stars: ✭ 137 (+117.46%)
Mutual labels:  rxjs, observable
observable-profiler
Tracks new & disposed Observable subscriptions
Stars: ✭ 41 (-34.92%)
Mutual labels:  rxjs, observable
Rx React Container
Use RxJS in React components, via HOC or Hook
Stars: ✭ 105 (+66.67%)
Mutual labels:  rxjs, observable
rxact
Rxact is an observable application management for Javascript app
Stars: ✭ 21 (-66.67%)
Mutual labels:  rxjs, observable
mst-effect
💫 Designed to be used with MobX-State-Tree to create asynchronous actions using RxJS.
Stars: ✭ 19 (-69.84%)
Mutual labels:  rxjs, observable
Od Virtualscroll
🚀 Observable-based virtual scroll implementation in Angular
Stars: ✭ 133 (+111.11%)
Mutual labels:  rxjs, observable
observe-component
A library for accessing React component events as reactive observables
Stars: ✭ 36 (-42.86%)
Mutual labels:  rxjs, observable
React Eva
Effects+View+Actions(React distributed state management solution with rxjs.)
Stars: ✭ 121 (+92.06%)
Mutual labels:  rxjs, observable
Marble
Marble.js - functional reactive Node.js framework for building server-side applications, based on TypeScript and RxJS.
Stars: ✭ 1,947 (+2990.48%)
Mutual labels:  rxjs, observable
Rxios
A RxJS wrapper for axios
Stars: ✭ 119 (+88.89%)
Mutual labels:  rxjs, observable
Rx Sandbox
Marble diagram DSL based test suite for RxJS 6
Stars: ✭ 151 (+139.68%)
Mutual labels:  rxjs, observable
Angular1 Async Filter
Angular2 async pipe implemented as Angular 1 filter to handle promises & RxJS observables
Stars: ✭ 59 (-6.35%)
Mutual labels:  rxjs, observable
Rxviz
Rx Visualizer - Animated playground for Rx Observables
Stars: ✭ 1,471 (+2234.92%)
Mutual labels:  rxjs, observable
rxrest
Reactive rest library
Stars: ✭ 33 (-47.62%)
Mutual labels:  rxjs, observable
monogram
Aspect-oriented layer on top of the MongoDB Node.js driver
Stars: ✭ 76 (+20.63%)
Mutual labels:  rxjs, observable

rjax

License

English | 简体中文

Features

  • Porting the excellent @angular/common/http module.
  • Responsive ajax library based on rxjs.
  • Written in TypeScript with predictable static types.
  • Powerful and easy to use.

📦 Install

yarn add rjax # or: npm install rjax --save

🔨 Usage

import { Rjax } from 'rjax';
const rjax = new Rjax();
rjax.get(`/user/12345`).subscribe(response => {
    // Succeed Callback
    console.log(response);
}, error => {
    // Error Callback
    console.log(error);
});

Docs

API document and example link

Author

rjax © ppjjzz, Released under the MIT License.
Authored and maintained by ppjjzz.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].