sync-request-curl
Version:
Fast way to send synchronous web requests in NodeJS. API is a subset of sync-request. Leverages node-libcurl for high performance. Cannot be used in a browser.
77 lines • 1.89 kB
JSON
{
"name": "sync-request-curl",
"repository": {
"type": "git",
"url": "https://github.com/nktnet1/sync-request-curl"
},
"version": "4.0.0",
"files": [
"dist"
],
"keywords": [
"sync",
"sync-request",
"synchronous",
"request",
"fast",
"quick",
"speed",
"performance",
"http",
"https",
"curl",
"libcurl",
"node-libcurl",
"comp1531"
],
"author": "Khiet Tam Nguyen",
"license": "MIT",
"description": "Fast way to send synchronous web requests in NodeJS. API is a subset of sync-request. Leverages node-libcurl for high performance. Cannot be used in a browser.",
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@hono/node-server": "^1.19.7",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@vitest/coverage-v8": "4.0.16",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"hono": "^4.11.1",
"sync-dev-server": "^1.1.2",
"tsdown": "^0.18.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"dependencies": {
"node-libcurl": "^5.0.1"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"engines": {
"node": ">=22.14"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./errors": {
"require": "./dist/errors.cjs",
"import": "./dist/errors.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"start": "tsx tests/app/server",
"dev": "tsx watch --include ./tests/app ./tests/app/server.ts",
"test": "vitest run",
"tc": "vitest run --coverage",
"lint": "eslint './**/*.ts'",
"lint:fix": "eslint --fix './**/*.ts'",
"tsc": "tsc --noEmit",
"build": "tsdown"
}
}