@turajs/http
TypeScript icon, indicating that this package has built-in type declarations

1.0.12 • Public • Published

@turajs/http

Generic HTTP client that is used as a network provider for @turajs/core.

Installation

@turajs/http can be used with NodeJS or Web. Two formats are available

Using with NodeJS and/or modern web frameworks

Install using npm:

npm install @turajs/http

or using yarn:

yarn add @turajs/http

Example

import {HttpImpl} from '@turajs/http'

async function getTodos() {
    try{
        const client = new HttpClientFactory.createHttpClient('https://jsonplaceholder.typicode.com/');
        const result = await client.get('/todos/1')
        console.log(result)
    }
    catch(httpError){
        console.error(httpError.message)
    }
}

Using in classic <script>

Each package is available as bundled standalone library using UMD. This way signumJS can be used also within <script>-Tags. This might be useful for Wordpress and/or other PHP applications.

Just import the package using the HTML <script> tag.

<script src='https://cdn.jsdelivr.net/npm/@turajs/http/dist/signumjs.http.min.js'></script>

Example

const {HttpClientFactory} = sig$http
const client = new HttpClientFactory.createHttpClient('https://jsonplaceholder.typicode.com/');
client.get('/todos/1').then(console.log)

See more here:

@turajs/http Online Documentation

/@turajs/http/

    Package Sidebar

    Install

    npm i @turajs/http

    Weekly Downloads

    5

    Version

    1.0.12

    License

    Apache-2.0

    Unpacked Size

    257 kB

    Total Files

    48

    Last publish

    Collaborators

    • pride4215