Socket
Socket
Sign inDemoInstall

@aspida/node-fetch

Package Overview
Dependencies
17
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @aspida/node-fetch

node-fetch client for aspida


Version published
Maintainers
1
Install size
475 kB
Created

Readme

Source

@aspida/node-fetch

aspidaaspida-mockopenapi2aspidapathpida
@aspida/axios@aspida/ky@aspida/fetch@aspida/node-fetch





aspida




node-fetch client for aspida.


Getting Started

Installation

  • Using npm:

    $ npm install node-fetch @aspida/node-fetch
    $ npm install @types/node-fetch --save-dev
    
  • Using Yarn:

    $ yarn add node-fetch @aspida/node-fetch
    $ yarn add @types/node-fetch --dev
    

Make HTTP request from application

src/index.ts

import fetch from "node-fetch"
import aspida from "@aspida/fetch"
import api from "../apis/$api"

const fetchConfig = { baseURL: "https://example.com/api" }
const client = api(aspida(fetch, fetchConfig))
;(async () => {
  const userId = 0
  const limit = 10

  await client.v1.users.post({ name: "mario" })

  const res = await client.v1.users.get({ query: { limit } })
  console.log(res)
  // req -> GET: https://example.com/api/v1/users/?limit=10
  // res -> { status: 200, data: [{ id: 0, name: "mario" }], headers: {...} }

  const user = await client.v1.users._userId(userId).$get()
  console.log(user)
  // req -> GET: https://example.com/api/v1/users/0
  // res -> { id: 0, name: "mario" }
})()

License

aspida-fetch is licensed under a MIT License.

Keywords

FAQs

Last updated on 13 May 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc