Skip to content

finixjs/finix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

finix

A HTTP library for Node.js and Browser.

It is both Promise- and Observable-based.

Install

NPM:

npm i finix -S

Yarn:

yarn add yarn

Usage

Using Promise:

const finix = require('finix')

finix.get('').then((v)=>{
    v.json()
}).error((err)=>console.log(err))

Using Observable:

const finix = require('finix')

finix.get('').subscribe((v)=>{},err=>console.log(err))

About

A http library for node and browser

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published