You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@candlefinance/send

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@candlefinance/send

A fast, low-level networking library

latest
Source
npmnpm
Version
0.3.16
Version published
Maintainers
0
Created
Source

npm downloads discord users online

Send

Uses URLSession on iOS and OkHttp on Android to provide a fast, low-level networking layer for React Native.

Installation

To install send with npm:

npm install @candlefinance/send

To install send with yarn:

yarn add @candlefinance/send

Usage

import { send } from '@candlefinance/send'

const response = await send({
  baseURL: 'https://itunes.apple.com',
  method: 'GET',
  path: '/lookup',
  queryParameters: {
    bundleId: 'com.trycandle.candle',
    country: 'US',
  },
  body: null,
  utf8ContentTypes: ['text/javascript'],
  headerParameters: {
    'Cache-Control': 'no-cache',
    'Content-Type': 'application/json',
    'Accept': 'application/json',
  },
})

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

Keywords

react-native

FAQs

Package last updated on 02 Sep 2024

Did you know?

Socket

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