How to use the node-libcurl.Curl function in node-libcurl

To help you get started, we’ve selected a few node-libcurl examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github zeit / pkg / test / test-79-npm / node-libcurl / node-libcurl.js View on Github external
'use strict';

// apt-get install libcurl4-openssl-dev

// IF YOU USE 32-BIT NODEJS:
// patch /usr/include/curl/curlbuild.h
// #define CURL_SIZEOF_LONG 4
// #define CURL_SIZEOF_CURL_OFF_T 4

var Curl = require('node-libcurl').Curl;
var curl = new Curl();
curl.setOpt('URL', 'www.yandex.ru');
curl.setOpt('FOLLOWLOCATION', true);
curl.on('end', function (status) {
  if (status === 200) {
    console.log('ok');
  }
  this.close(); // eslint-disable-line no-invalid-this
});
curl.perform();
github vendure-ecommerce / vendure / packages / testing / src / simple-graphql-client.ts View on Github external
return new Promise((resolve, reject) => {
            const curl = new Curl();

            const postData = createUploadPostData(mutation, filePaths, mapVariables);
            const processedPostData = [
                {
                    name: 'operations',
                    contents: JSON.stringify(postData.operations),
                },
                {
                    name: 'map',
                    contents:
                        '{' +
                        Object.entries(postData.map)
                            .map(([i, path]) => `"${i}":["${path}"]`)
                            .join(',') +
                        '}',
                },
github mikearnaldi / matechs-effect / packages / http-client-libcurl / src / index.ts View on Github external
T.async(done => {
              const req = new C.Curl();
              const reqHead = [
                ...(isJson(requestType)
                  ? ["Content-Type: application/json"]
                  : []),
                ...pipe(
                  headers,
                  R.collect((k, v) => `${k}: ${v}`)
                )
              ];

              req.setOpt("URL", url);
              req.setOpt("CAINFO", caPath);
              req.setOpt("FOLLOWLOCATION", 1);
              req.setOpt("VERBOSE", 0);
              req.setOpt("SSL_VERIFYHOST", 2);
              req.setOpt("SSL_VERIFYPEER", 1);
github do-web / curl-request / index.js View on Github external
this._reset = () => {
        this.curl = new Curl();
    };

node-libcurl

The fastest http(s) client (and much more) for Node.js - Node.js bindings for libcurl

MIT
Latest version published 6 months ago

Package Health Score

52 / 100
Full package analysis