Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Non-throwing fetch wrapper
npm i fetchmap
This is a simple wrapper for a fetch
-like function that catches all possible exceptions and returns a 'success or failure' wrapped value. It takes an object that maps response.status
to validating transform and standard fetch
arguments. Read the docs here.
// server code
import express from 'express'
express()
.get('/json', (_, res) => {
res.json({ some: 'data' })
})
.listen(5005)
// client code
import { createFetchmap } from 'fetchmap'
import fetch from 'node-fetch'
const success = <T>(value: T) => ({ tag: 'success', success: value } as const)
const fetchmap = createFetchmap(fetch)
const mock_data_validator = (data: unknown) => success(data)
const json_success = await fetchmap(
{ ok: { json: mock_data_validator } },
'https://localhost:5005/json'
)
expect(json_success).toEqual({ tag: 'success', success: { some: 'data' } })
const json_success_only_200 = await fetchmap(
{ 200: mock_data_validator },
'https://localhost:5005/json'
)
expect(json_success_only_200).toEqual({ tag: 'success', success: { some: 'data' } })
const invalid_url_failure = await fetchmap({}, '1234')
expect(invalid_url_failure).toEqual({
tag: 'failure',
failure: { clientError: new TypeError('Only absolute URLs are supported') }
})
const not_found_error_with_request_init = await fetchmap(
{ notOk: { noBody: ({ status }) => success(status) } },
'https://localhost:5005/invalid',
{ method: 'POST', credentials: 'include' }
)
expect(not_found_error_with_request_init).toEqual({ tag: 'failure', failure: { serverError: 404 } })
See test or playground
ts-railway - compatible result library
FAQs
Non-throwing Fetch API wrapper
The npm package fetchmap receives a total of 5 weekly downloads. As such, fetchmap popularity was classified as not popular.
We found that fetchmap demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.